Lines Matching refs:_streamPos
22 public int _streamPos; // offset (from _buffer) of first not read byte from Stream field in InWindow
31 int numBytes = _bufferOffset + _streamPos - offset; in MoveBlock()
45 int size = (0 - _bufferOffset) + _blockSize - _streamPos; in ReadBlock()
48 int numReadBytes = _stream.read(_bufferBase, _bufferOffset + _streamPos, size); in ReadBlock()
51 _posLimit = _streamPos; in ReadBlock()
59 _streamPos += numReadBytes; in ReadBlock()
60 if (_streamPos >= _pos + _keepSizeAfter) in ReadBlock()
61 _posLimit = _streamPos - _keepSizeAfter; in ReadBlock()
88 _streamPos = 0; in Init()
111 if ((_pos + index) + limit > _streamPos) in GetMatchLen()
112 limit = _streamPos - (_pos + index); in GetMatchLen()
122 public int GetNumAvailableBytes() { return _streamPos - _pos; } in GetNumAvailableBytes()
129 _streamPos -= subValue; in ReduceOffsets()