Home
last modified time | relevance | path

Searched refs:MidAlloc (Results 1 – 17 of 17) sorted by relevance

/external/lzma/C/
DAlloc.h18 void *MidAlloc(size_t size);
25 #define MidAlloc(size) MyAlloc(size) macro
DAlloc.c156 void *MidAlloc(size_t size) in MidAlloc() function
244 static void *SzMidAlloc(ISzAllocPtr p, size_t size) { UNUSED_VAR(p); return MidAlloc(size); } in SzMidAlloc()
/external/lzma/CPP/7zip/Common/
DFilterCoder.h32 _buf = (Byte *)::MidAlloc(size); in AllocAlignedMask()
47 _bufBase = (Byte *)::MidAlloc(size + alignMask);
DCWrappers.cpp169 Lim = Cur = Buf = (Byte *)::MidAlloc((size_t)size); in Alloc()
218 Buf = (Byte *)::MidAlloc(size); in Alloc()
DOutBuffer.cpp18 _buf = (Byte *)::MidAlloc(bufSize); in Create()
DInBuffer.cpp29 _bufBase = (Byte *)::MidAlloc(bufSize); in Create()
DStreamObjects.cpp202 _data = (Byte *)MidAlloc(dataSize); in Alloc()
DFileStreams.cpp127 Buf = (Byte *)MidAlloc(kClusterSize); in Read()
/external/lzma/CPP/Common/
DMyBuffer2.h38 _data = (Byte *)::MidAlloc(size); in AllocAtLeast()
/external/lzma/CPP/Windows/
DFileIO.cpp165 Byte *buf = (Byte *)MidAlloc(kClusterSize); in CorrectDeviceSize()
195 buf = (Byte *)MidAlloc(kClusterSize); in CorrectDeviceSize()
/external/lzma/CPP/7zip/Compress/
DCopyCoder.cpp30 _buf = (Byte *)::MidAlloc(kBufSize); in Code()
DPpmdDecoder.cpp100 _outBuf = (Byte *)::MidAlloc(kBufSize); in Code()
DPpmdEncoder.cpp111 _inBuf = (Byte *)::MidAlloc(kBufSize); in Code()
DBcj2Coder.cpp47 Byte *buf = (Byte *)::MidAlloc(newSize); in Alloc()
/external/lzma/CPP/7zip/UI/Common/
DHashCalc.cpp27 _data = ::MidAlloc(size); in Alloc()
DBench.cpp130 Buffer = (Byte *)::MidAlloc(size); in AllocAlignedMask()
148 _bufBase = (Byte *)::MidAlloc(size + alignMask); in AllocAlignedMask()
/external/lzma/CPP/7zip/Archive/
DXzHandler.cpp763 xzu.InBuf = (Byte *)MidAlloc(kInBufSize); in DecodeBlock()