Searched refs:malloc (Results 1 - 25 of 416) sorted by relevance

1234567891011>>

/vbox/src/VBox/Additions/haiku/SharedFolders/
H A Dkernel_cpp.h53 return malloc(size);
60 return malloc(size);
67 return malloc(size);
74 return malloc(size);
81 return malloc(size);
88 return malloc(size);
/vbox/src/VBox/Additions/x11/x11include/mesa-7.2/src/mesa/shader/grammar/
H A Dgrammar_crt.h6 #include <malloc.h>
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/Pccts/h/
H A Dcharptr.c34 #include <malloc.h>
55 *a = (char *) malloc(strlen(text)+1); /* MR6 */
/vbox/src/libs/xpcom18a4/nsprpub/lib/msgc/src/
H A Dmacgc.c51 heapPtr = malloc(heapSize);
61 heapPtr = malloc(heapSize);
H A Dos2gc.c46 /* Leave a bit of room for any malloc header bytes... */
66 addr = malloc((size_t)*sizep);
H A Dwin16gc.c64 addr = malloc((size_t)*sizep);
/vbox/src/VBox/Devices/EFI/Firmware/CryptoPkg/Library/BaseCryptLib/SysCall/
H A DBaseMemAllocation.c23 void *malloc (size_t size) function
/vbox/include/iprt/
H A Dalloca.h48 # include <malloc.h>
/vbox/src/libs/xpcom18a4/nsprpub/lib/libc/src/
H A Dstrdup.c59 rv = (char *)malloc(n);
92 rv = (char *)malloc(l+1);
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/BsdSocketLib/
H A Dsethostname.c90 pName = malloc ( namelen + 1 );
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/sparc/ustack/
H A Dtst.helper.c53 uint32_t *fp = malloc(sizeof (instr));
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/windows/
H A Dw16gc.c80 addr = malloc((size_t)*sizep);
H A Dw16mem.c62 seg->vaddr = (char *)malloc(size);
/vbox/src/libs/xpcom18a4/xpcom/typelib/xpidl/macplugin/
H A Dmac_memory.cpp95 void* malloc(size_t size) function in namespace:std
123 void* ptr = malloc(size);
135 newptr = malloc(size);
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/StdLib/
H A DMalloc.c2 Definitions for memory allocation routines: calloc, malloc, realloc, free.
5 calloc, malloc, and realloc functions is unspecified. The pointer returned
60 /** The malloc function allocates space for an object whose size is specified
77 malloc(size_t Size) function
119 RetVal = malloc(NumSize);
130 does not match a pointer earlier returned by the calloc, malloc, or realloc
150 If Ptr is a null pointer, the realloc function behaves like the malloc
153 If Ptr does not match a pointer earlier returned by the calloc, malloc, or
170 - NULL > 0 Same as malloc(NewSize)
172 - valid NewSize >= OldSize Returns malloc(NewSiz
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/PosixLib/Gen/
H A Dopendir.c91 if ((dirp = (DIR *)malloc(sizeof(DIR))) == NULL)
104 dirp->dd_buf = malloc((size_t)dirp->dd_len);
119 if ((dirp->dd_lock = malloc(sizeof(mutex_t))) == NULL)
/vbox/src/VBox/Devices/Network/slirp/libalias/
H A Dalias_mod.h42 #define malloc(x) malloc(x, M_ALIAS, M_NOWAIT|M_ZERO) macro
43 #define calloc(x, n) malloc(x*n)
/vbox/src/VBox/Devices/Network/lwip/src/include/lwip/
H A Dmem.h47 /* aliases for C library malloc() */
50 #define mem_malloc(x) malloc(x)
53 /* lwIP alternative malloc */
/vbox/src/VBox/Devices/PC/ipxe/src/hci/mucurses/
H A Dwindows.c54 if ( ( child = malloc( sizeof( WINDOW ) ) ) == NULL )
78 if ( ( copy = malloc( sizeof( WINDOW ) ) ) == NULL )
123 if ( ( win = malloc( sizeof(WINDOW) ) ) == NULL )
152 if ( ( child = malloc( sizeof( WINDOW ) ) ) == NULL )
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/i386/ustack/
H A Dtst.helper.c54 uint8_t *fp = malloc(sizeof (instr));
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/LzmaCompress/Sdk/C/
H A DAlloc.c29 void *p = malloc(size);
34 return malloc(size);
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Locale/
H A Dwcsftime.c74 if ((sformat = malloc(sflen + 1)) == NULL)
89 dst = malloc(maxsize * MB_CUR_MAX);
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/vars/
H A Dtst.ucaller.ksh31 # implementation of malloc(3C). If you're reading this comment because
47 pid\$target:ld.so.1:malloc:entry
/vbox/src/libs/xpcom18a4/ipc/ipcd/extensions/transmngr/common/
H A DtmTransaction.cpp73 header = (tmHeader*) malloc(aLength);
86 header = (tmHeader*) malloc (sizeof(tmHeader) + aLength);
/vbox/src/VBox/Devices/PC/ipxe/src/hci/
H A Dlinux_args.c27 #include <ipxe/malloc.h>
73 setting = malloc(sizeof(*setting));
105 dev_request = malloc(sizeof(*dev_request));

Completed in 101 milliseconds

1234567891011>>