Searched refs:malloc (Results 51 - 75 of 416) sorted by relevance

1234567891011>>

/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/String/
H A DCopying.c141 if ((copy = malloc(len)) == NULL)
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Uefi/
H A Dwritev.c119 pBuf = (char*)malloc (TotalBytes);
/vbox/src/VBox/Devices/EFI/Firmware/VBoxPkg/VBoxFsDxe/test/
H A Dfsw_posix_base.h67 #define fsw_alloc(size, ptrptr) (((*(ptrptr) = malloc(size)) == NULL) ? FSW_OUT_OF_MEMORY : FSW_SUCCESS)
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/msvcrt/
H A Dmalloc.h78 void* __cdecl malloc(size_t);
/vbox/src/VBox/Devices/Network/
H A Dlwipopts.h5 #include <iprt/alloca.h> /* This may include malloc.h (msc), which is something that has
16 /** Make lwIP use the libc malloc, or more precisely (see below) the IPRT
59 set to 1 this is just system malloc), not memp_malloc. */
170 #define malloc(x) RTMemAlloc(x) macro
/vbox/src/VBox/Devices/PC/ipxe/src/core/
H A Diobuf.c23 #include <ipxe/malloc.h>
/vbox/src/VBox/Devices/PC/ipxe/src/usr/
H A Dimgtrust.c57 data = malloc ( len );
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/lib/libctf/common/
H A Dctf_subr.c79 return (malloc(size));
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/lib/libdtrace/common/
H A Ddt_strtab.c45 if ((ptr = malloc(sp->str_bufsz)) == NULL)
66 dt_strtab_t *sp = malloc(sizeof (dt_strtab_t));
75 sp->str_hash = malloc(nbuckets * sizeof (dt_strhash_t *));
245 if ((hp = malloc(sizeof (dt_strhash_t))) == NULL)
/vbox/src/VBox/NetworkServices/NAT/
H A Dlwipopts.h22 #include <iprt/alloca.h> /* This may include malloc.h (msc), which is something that has
33 /** Make lwIP use the libc malloc, or more precisely (see below) the IPRT
79 set to 1 this is just system malloc), not memp_malloc. */
192 #define malloc(x) RTMemAlloc(x) macro
/vbox/src/VBox/Additions/haiku/SharedFolders/
H A Dvboxsf.h49 #include <malloc.h>
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/msvcrt/
H A Dmalloc.h78 void* __cdecl malloc(size_t);
/vbox/src/VBox/Runtime/r0drv/haiku/
H A Dalloc-r0drv-haiku.c50 PRTMEMHDR pHdr = (PRTMEMHDR)malloc(cb + sizeof(*pHdr));
/vbox/src/libs/xpcom18a4/ipc/ipcd/shared/src/
H A DipcMessage.cpp84 clone->mMsgHdr = (ipcMessageHeader *) malloc(mMsgHdr->mLen);
113 mMsgHdr = (ipcMessageHeader *) malloc(msgLen);
244 mMsgHdr = (ipcMessageHeader *) malloc(msgLen);
259 mMsgHdr = (ipcMessageHeader *) malloc(msgLen);
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/windows/
H A Dw16stdio.c114 ** _PL_W16CallBackMalloc() -- Wrapper for malloc()
119 return( malloc( size ));
/vbox/src/VBox/Devices/EFI/Firmware/CryptoPkg/Library/BaseCryptLib/Pk/
H A DCryptPkcs7.c60 Obj = (X509_OBJECT *) malloc (sizeof (X509_OBJECT));
227 P7Data = malloc (P7DataSize);
241 *SignedData = malloc (*SignedDataSize);
331 *WrapData = malloc (*WrapDataSize);
496 CertBuf = malloc (BufferSize);
522 *TrustedCert = malloc (*CertLength);
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/Pccts/dlg/
H A Dsupport.c37 #include <malloc.h>
66 t = (char *) malloc(bytes);
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/net/
H A Dradix.h147 #define R_Malloc(p, t, n) (p = (t) malloc((unsigned int)(n)))
153 #define R_Malloc(p, t, n) (p = (t) malloc((unsigned long)(n), M_RTABLE, M_DONTWAIT))
/vbox/src/VBox/Runtime/r3/win/
H A Dalloc-win.cpp42 # include <malloc.h>
53 void *pv = malloc(cb);
54 AssertMsg(pv, ("malloc(%d) failed!!!\n", cb));
/vbox/src/libs/xpcom18a4/ipc/ipcd/daemon/src/
H A DipcModuleReg.cpp119 char *buf = (char *) malloc(dLen + 1 + fLen + 1);
171 char *modulesDir = (char*) malloc(finalLen);
/vbox/src/libs/xpcom18a4/nsprpub/pr/tests/
H A Dwritev.c121 buffer = (char*)malloc(message_length);
132 iov = (PRIOVec*)malloc(number_fragments * sizeof(PRIOVec));
/vbox/src/libs/zlib-1.2.6/examples/
H A Dfitblk.c147 blk = malloc(size + EXCESS);
186 tmp = malloc(size + EXCESS);
/vbox/src/libs/zlib-1.2.6/test/
H A Dinfcover.c84 ptr = malloc(len);
90 item = malloc(sizeof(struct mem_item));
162 zone = malloc(sizeof(struct mem_zone));
250 in = malloc((strlen(hex) + 1) >> 1);
301 out = malloc(len); assert(out != NULL);
521 out = malloc(size);
523 win = malloc(32768);
525 prefix = malloc(strlen(id) + 6);
/vbox/src/libs/zlib-1.2.6/
H A Dzutil.c173 /* Turbo C malloc() does not allow dynamic allocation of 64K bytes
276 extern voidp malloc OF((uInt size));
287 return sizeof(uInt) > 2 ? (voidpf)malloc(items * size) :
/vbox/src/libs/libpng-1.2.8/contrib/gregbook/
H A Dreadpng.c231 if ((image_data = (uch *)malloc(rowbytes*height)) == NULL) {
235 if ((row_pointers = (png_bytepp)malloc(height*sizeof(png_bytep))) == NULL) {

Completed in 1690 milliseconds

1234567891011>>