Home
last modified time | relevance | path

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

/external/lzma/CPP/7zip/Compress/
DLzmaDecoder.cpp35 _inBufSizeNew(1 << 20) in CDecoder()
54 STDMETHODIMP CDecoder::SetInBufSize(UInt32 , UInt32 size) { _inBufSizeNew = size; return S_OK; } in SetInBufSize()
59 if (!_inBuf || _inBufSizeNew != _inBufSize) in CreateInputBuffer()
63 _inBuf = (Byte *)MyAlloc(_inBufSizeNew); in CreateInputBuffer()
66 _inBufSize = _inBufSizeNew; in CreateInputBuffer()
DLzmaDecoder.h46 UInt32 _inBufSizeNew; variable