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

  /external/lzma/CPP/7zip/Common/
InOutTempBuffer.cpp 33 _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;
InOutTempBuffer.h 17 UInt32 _bufPos;

Completed in 1393 milliseconds