Searched refs:MyAlloc (Results 1 - 7 of 7) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/LzmaCompress/Sdk/C/
H A DAlloc.h11 void *MyAlloc(size_t size);
25 #define MidAlloc(size) MyAlloc(size)
27 #define BigAlloc(size) MyAlloc(size)
H A DAlloc.c23 void *MyAlloc(size_t size) function
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/Common/
H A DMyAlloc.h14 MyAlloc.h
43 // Replace C library allocation routines with MyAlloc routines.
45 #define malloc(size) MyAlloc ((size), __FILE__, __LINE__)
46 #define calloc(count, size) MyAlloc ((count) * (size), __FILE__, __LINE__)
120 MyAlloc (
162 // This does a MyAlloc(), memcpy() and MyFree(). There is no optimization
222 /* eof - MyAlloc.h */
H A DGNUmakefile31 MyAlloc.o \
H A DMakefile30 MyAlloc.obj \
H A DMyAlloc.c14 MyAlloc.c
22 #include "MyAlloc.h"
165 MyAlloc ( function
286 // This does a MyAlloc(), memcpy() and MyFree(). There is no optimization
366 Buffer = MyAlloc (Size, File, Line);
516 /* eof - MyAlloc.c */
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/LzmaCompress/
H A DLzmaCompress.c46 static void *SzAlloc(void *p, size_t size) { p = p; return MyAlloc(size); }
114 inBuffer = (Byte *)MyAlloc(inSize);
128 outBuffer = (Byte *)MyAlloc(outSize);
142 filteredStream = (Byte *)MyAlloc(inSize);
200 inBuffer = (Byte *)MyAlloc(inSize);
214 outBuffer = (Byte *)MyAlloc(outSize);

Completed in 43 milliseconds