Lines Matching refs:_streamPos
35 _streamPos = 0; in Init()
47 UInt64 res = _processedSize + _pos - _streamPos; in GetProcessedSize()
48 if (_streamPos > _pos) in GetProcessedSize()
57 UInt32 size = (_streamPos >= _pos) ? (_bufferSize - _streamPos) : (_pos - _streamPos); in FlushPart()
64 memmove(_buffer2, _buffer + _streamPos, size); in FlushPart()
75 result = _stream->Write(_buffer + _streamPos, size, &processedSize); in FlushPart()
78 _streamPos += size; in FlushPart()
79 if (_streamPos == _bufferSize) in FlushPart()
80 _streamPos = 0; in FlushPart()
86 _limitPos = (_streamPos > _pos) ? _streamPos : _bufferSize; in FlushPart()
98 while(_streamPos != _pos) in Flush()