Home
last modified time | relevance | path

Searched refs:_inBufSize (Results 1 – 2 of 2) sorted by relevance

/external/lzma/CPP/7zip/Compress/
DLzmaDecoder.cpp28 _inBufSize(1 << 20), in CDecoder()
47 STDMETHODIMP CDecoder::SetInBufSize(UInt32 , UInt32 size) { _inBufSize = size; return S_OK; } in SetInBufSize()
52 if (_inBuf == 0 || _inBufSize != _inBufSizeAllocated) in CreateInputBuffer()
55 _inBuf = (Byte *)MyAlloc(_inBufSize); in CreateInputBuffer()
58 _inBufSizeAllocated = _inBufSize; in CreateInputBuffer()
DLzmaDecoder.h37 UInt32 _inBufSize; variable