/vbox/src/VBox/Additions/haiku/SharedFolders/ |
H A D | kernel_cpp.h | 53 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 D | grammar_crt.h | 6 #include <malloc.h>
|
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/Pccts/h/ |
H A D | charptr.c | 34 #include <malloc.h> 55 *a = (char *) malloc(strlen(text)+1); /* MR6 */
|
/vbox/src/libs/xpcom18a4/nsprpub/lib/msgc/src/ |
H A D | macgc.c | 51 heapPtr = malloc(heapSize); 61 heapPtr = malloc(heapSize);
|
H A D | os2gc.c | 46 /* Leave a bit of room for any malloc header bytes... */ 66 addr = malloc((size_t)*sizep);
|
H A D | win16gc.c | 64 addr = malloc((size_t)*sizep);
|
/vbox/src/VBox/Devices/EFI/Firmware/CryptoPkg/Library/BaseCryptLib/SysCall/ |
H A D | BaseMemAllocation.c | 23 void *malloc (size_t size) function
|
/vbox/include/iprt/ |
H A D | alloca.h | 48 # include <malloc.h>
|
/vbox/src/libs/xpcom18a4/nsprpub/lib/libc/src/ |
H A D | strdup.c | 59 rv = (char *)malloc(n); 92 rv = (char *)malloc(l+1);
|
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/BsdSocketLib/ |
H A D | sethostname.c | 90 pName = malloc ( namelen + 1 );
|
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/sparc/ustack/ |
H A D | tst.helper.c | 53 uint32_t *fp = malloc(sizeof (instr));
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/windows/ |
H A D | w16gc.c | 80 addr = malloc((size_t)*sizep);
|
H A D | w16mem.c | 62 seg->vaddr = (char *)malloc(size);
|
/vbox/src/libs/xpcom18a4/xpcom/typelib/xpidl/macplugin/ |
H A D | mac_memory.cpp | 95 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 D | Malloc.c | 2 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 D | opendir.c | 91 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 D | alias_mod.h | 42 #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 D | mem.h | 47 /* 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 D | windows.c | 54 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 D | tst.helper.c | 54 uint8_t *fp = malloc(sizeof (instr));
|
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/LzmaCompress/Sdk/C/ |
H A D | Alloc.c | 29 void *p = malloc(size); 34 return malloc(size);
|
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Locale/ |
H A D | wcsftime.c | 74 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 D | tst.ucaller.ksh | 31 # 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 D | tmTransaction.cpp | 73 header = (tmHeader*) malloc(aLength); 86 header = (tmHeader*) malloc (sizeof(tmHeader) + aLength);
|
/vbox/src/VBox/Devices/PC/ipxe/src/hci/ |
H A D | linux_args.c | 27 #include <ipxe/malloc.h> 73 setting = malloc(sizeof(*setting)); 105 dev_request = malloc(sizeof(*dev_request));
|