Lines Matching refs:_pos
19 public int _pos; // offset (from _buffer) of curent byte field in InWindow
26 int offset = _bufferOffset + _pos - _keepSizeBefore; in MoveBlock()
60 if (_streamPos >= _pos + _keepSizeAfter) in ReadBlock()
87 _pos = 0; in Init()
95 _pos++; in MovePos()
96 if (_pos > _posLimit) in MovePos()
98 int pointerToPostion = _bufferOffset + _pos; in MovePos()
105 public byte GetIndexByte(int index) { return _bufferBase[_bufferOffset + _pos + index]; } in GetIndexByte()
111 if ((_pos + index) + limit > _streamPos) in GetMatchLen()
112 limit = _streamPos - (_pos + index); in GetMatchLen()
115 int pby = _bufferOffset + _pos + index; in GetMatchLen()
122 public int GetNumAvailableBytes() { return _streamPos - _pos; } in GetNumAvailableBytes()
128 _pos -= subValue; in ReduceOffsets()