Home
last modified time | relevance | path

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

/external/lzma/CPP/7zip/Common/
DFilterCoder.cpp166 HRESULT res = _outStream->Write(_buf + _convPos, num, &processed); in Flush2()
170 _convPos += processed; in Flush2()
176 if (_convPos != 0) in Flush2()
178 UInt32 num = _bufPos - _convPos; in Flush2()
180 _buf[i] = _buf[_convPos + i]; in Flush2()
182 _convPos = 0; in Flush2()
325 memcpy(data, _buf + _convPos, size); in Read()
326 _convPos += size; in Read()
334 if (_convPos != 0) in Read()
336 UInt32 num = _bufPos - _convPos; in Read()
[all …]
DFilterCoder.h102 UInt32 _convPos; // current pos in buffer for converted data variable
108 _convPos = 0; in InitSpecVars()