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

  /external/lzma/CPP/7zip/Compress/
Lzma2Decoder.cpp 29 _inBufSize(0),
53 if (!_inBuf || _inBufSize != _inBufSizeNew)
56 _inBufSize = 0;
60 _inBufSize = _inBufSizeNew;
116 hres = inStream->Read(_inBuf, _inBufSize, &_inSize);
212 RINOK(_inStream->Read(_inBuf, _inBufSize, &_inSize));
LzmaDecoder.cpp 28 _inBufSize(1 << 20),
44 STDMETHODIMP CDecoder::SetInBufSize(UInt32 , UInt32 size) { _inBufSize = size; return S_OK; }
49 if (_inBuf == 0 || _inBufSize != _inBufSizeAllocated)
52 _inBuf = (Byte *)MyAlloc(_inBufSize);
55 _inBufSizeAllocated = _inBufSize;
Lzma2Decoder.h 40 UInt32 _inBufSize;
LzmaDecoder.h 38 UInt32 _inBufSize;
  /external/lzma/CPP/7zip/Common/
FilterCoder.cpp 24 STDMETHODIMP CFilterCoder::SetInBufSize(UInt32 , UInt32 size) { _inBufSize = size; return S_OK; }
29 UInt32 size = MyMin(_inBufSize, _outBufSize);
55 _inBufSize(kBufSize),
FilterCoder.h 91 UInt32 _inBufSize;

Completed in 95 milliseconds