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

  /external/lzma/CPP/7zip/Common/
InOutTempBuffer.cpp 35 _bufPos = 0;
63 size_t cur = kTempBufSize - _bufPos;
68 memcpy(_buf + _bufPos, data, cur);
70 _bufPos += cur;
86 if (_bufPos != 0)
88 RINOK(WriteStream(stream, _buf, _bufPos));
89 crc = CrcUpdate(crc, _buf, _bufPos);
90 size += _bufPos;
FilterCoder.cpp 178 UInt32 num = _bufPos - _convPos;
181 _bufPos = num;
199 // _bufPos is small
201 if (_bufPos != _bufSize)
203 UInt32 num = MyMin(size, _bufSize - _bufPos);
204 memcpy(_buf + _bufPos, data, num);
209 _bufPos += num;
210 if (_bufPos != _bufSize)
214 // _bufPos == _bufSize
215 _convSize = Filter->Filter(_buf, _bufPos);
    [all...]
InOutTempBuffer.h 16 size_t _bufPos;
FilterCoder.h 101 UInt32 _bufPos;
107 _bufPos = 0;

Completed in 145 milliseconds