Searched refs:_bufPos (Results 1 - 2 of 2) sorted by relevance

/external/lzma/CPP/7zip/Common/
H A DInOutTempBuffer.cpp33 _bufPos = 0;
64 if (_bufPos < kTempBufSize)
66 UInt32 cur = MyMin(kTempBufSize - _bufPos, size);
67 memcpy(_buf + _bufPos, data, cur);
69 _bufPos += cur;
85 if (_bufPos > 0)
87 RINOK(WriteStream(stream, _buf, _bufPos));
88 crc = CrcUpdate(crc, _buf, _bufPos);
89 size += _bufPos;
H A DInOutTempBuffer.h17 UInt32 _bufPos; member in class:CInOutTempBuffer

Completed in 96 milliseconds