Lines Matching refs:_pos
19 public UInt32 _pos; // offset (from _buffer) of curent byte field in SevenZip.Compression.LZ.InWindow
26 UInt32 offset = (UInt32)(_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 UInt32 pointerToPostion = _bufferOffset + _pos; in MovePos()
105 public Byte GetIndexByte(Int32 index) { return _bufferBase[_bufferOffset + _pos + index]; } in GetIndexByte()
111 if ((_pos + index) + limit > _streamPos) in GetMatchLen()
112 limit = _streamPos - (UInt32)(_pos + index); in GetMatchLen()
115 UInt32 pby = _bufferOffset + _pos + (UInt32)index; in GetMatchLen()
122 public UInt32 GetNumAvailableBytes() { return _streamPos - _pos; } in GetNumAvailableBytes()
128 _pos -= (UInt32)subValue; in ReduceOffsets()