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

  /external/lzma/CPP/7zip/Compress/
PpmdEncoder.cpp 23 _inBuf(NULL),
33 ::MidFree(_inBuf);
76 if (!_inBuf)
78 _inBuf = (Byte *)::MidAlloc(kBufSize);
79 if (!_inBuf)
97 RINOK(inStream->Read(_inBuf, kBufSize, &size));
107 Ppmd7_EncodeSymbol(&_ppmd, &_rangeEnc, _inBuf[i]);
LzmaDecoder.cpp 27 CDecoder::CDecoder(): _inBuf(0), _propsWereSet(false), _outSizeDefined(false),
44 MyFree(_inBuf);
52 if (_inBuf == 0 || _inBufSize != _inBufSizeAllocated)
54 MyFree(_inBuf);
55 _inBuf = (Byte *)MyAlloc(_inBufSize);
56 if (_inBuf == 0)
90 if (_inBuf == 0 || !_propsWereSet)
101 RINOK(inStream->Read(_inBuf, _inBufSizeAllocated, &_inSize));
121 SRes res = LzmaDec_DecodeToDic(&_state, dicPos + curSize, _inBuf + _inPos, &inSizeProcessed, finishMode, &status);
162 if (_inBuf == 0)
    [all...]
Lzma2Decoder.cpp 29 CDecoder::CDecoder(): _inBuf(0), _outSizeDefined(false)
41 MyFree(_inBuf);
48 if (_inBuf == 0)
50 _inBuf = (Byte *)MyAlloc(kInBufSize);
51 if (_inBuf == 0)
79 if (_inBuf == 0)
88 RINOK(inStream->Read(_inBuf, kInBufSize, &_inSize));
113 SRes res = Lzma2Dec_DecodeToDic(&_state, dicPos + curSize, _inBuf + _inPos, &inSizeProcessed, finishMode, &status);
155 RINOK(_inStream->Read(_inBuf, kInBufSize, &_inSize));
170 _inBuf + _inPos, &inProcessed, LZMA_FINISH_ANY, &status);
    [all...]
Lzma2Decoder.h 27 Byte *_inBuf;
LzmaDecoder.h 26 Byte *_inBuf;

Completed in 532 milliseconds