HomeSort by relevance Sort by last modified time
    Searched refs:MyAlloc (Results 1 - 17 of 17) sorted by null

  /device/linaro/bootloader/edk2/BaseTools/Source/C/LzmaCompress/Sdk/C/
Alloc.h 11 void *MyAlloc(size_t size);
25 #define MidAlloc(size) MyAlloc(size)
27 #define BigAlloc(size) MyAlloc(size)
Alloc.c 23 void *MyAlloc(size_t size)
130 static void *SzAlloc(void *p, size_t size) { UNUSED_VAR(p); return MyAlloc(size); }
  /external/lzma/C/
Alloc.h 11 void *MyAlloc(size_t size);
25 #define MidAlloc(size) MyAlloc(size)
27 #define BigAlloc(size) MyAlloc(size)
Alloc.c 23 void *MyAlloc(size_t size)
130 static void *SzAlloc(void *p, size_t size) { UNUSED_VAR(p); return MyAlloc(size); }
Lzma86Enc.c 45 filteredStream = (Byte *)MyAlloc(srcLen);
  /device/linaro/bootloader/edk2/BaseTools/Source/C/Common/
MyAlloc.h 36 // Replace C library allocation routines with MyAlloc routines.
38 #define malloc(size) MyAlloc ((size), __FILE__, __LINE__)
39 #define calloc(count, size) MyAlloc ((count) * (size), __FILE__, __LINE__)
113 MyAlloc (
155 // This does a MyAlloc(), memcpy() and MyFree(). There is no optimization
215 /* eof - MyAlloc.h */
GNUmakefile 31 MyAlloc.o \
Makefile 30 MyAlloc.obj \
MyAlloc.c 15 #include "MyAlloc.h"
169 MyAlloc (
301 // This does a MyAlloc(), memcpy() and MyFree(). There is no optimization
393 Buffer = MyAlloc (Size, File, Line);
554 /* eof - MyAlloc.c */
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/Common/
MyAlloc.h 14 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__)
119 MyAlloc (
159 // This does a MyAlloc(), memcpy() and MyFree(). There is no optimization
218 /* eof - MyAlloc.h */
MyAlloc.c 14 MyAlloc.c
22 #include "MyAlloc.h"
165 MyAlloc (
286 // This does a MyAlloc(), memcpy() and MyFree(). There is no optimization
366 Buffer = MyAlloc (Size, File, Line);
516 /* eof - MyAlloc.c */
  /device/linaro/bootloader/edk2/BaseTools/Source/C/LzmaCompress/
LzmaCompress.c 110 inBuffer = (Byte *)MyAlloc(inSize);
124 outBuffer = (Byte *)MyAlloc(outSize);
138 filteredStream = (Byte *)MyAlloc(inSize);
196 inBuffer = (Byte *)MyAlloc(inSize);
210 outBuffer = (Byte *)MyAlloc(outSize);
  /external/lzma/CPP/7zip/Bundles/LzmaCon/
LzmaAlone.cpp 525 inBuffer = (Byte *)MyAlloc((size_t)inSize);
548 outBuffer = (Byte *)MyAlloc((size_t)outSize);
574 outBuffer = (Byte *)MyAlloc(outSize);
  /external/lzma/CPP/7zip/Compress/
LzmaDecoder.cpp 52 _inBuf = (Byte *)MyAlloc(_inBufSize);
  /external/lzma/CPP/7zip/UI/FileManager/
ExtractCallback.h 44 void *buf = MyAlloc(newSize);
  /external/lzma/CPP/7zip/Common/
StreamObjects.cpp 210 _tags = (UInt64 *)MyAlloc(sizeof(UInt64) << numBlocksLog);
  /external/lzma/CPP/7zip/Archive/
XzHandler.cpp 555 xzu.InBuf = (Byte *)MyAlloc(kInBufSize);
557 xzu.OutBuf = (Byte *)MyAlloc(kOutBufSize);

Completed in 192 milliseconds