Lines Matching refs:_bufferOffset
16 public UInt32 _bufferOffset; field in SevenZip.Compression.LZ.InWindow
26 UInt32 offset = (UInt32)(_bufferOffset) + _pos - _keepSizeBefore; in MoveBlock()
31 UInt32 numBytes = (UInt32)(_bufferOffset) + _streamPos - offset; in MoveBlock()
36 _bufferOffset -= offset; in MoveBlock()
45 int size = (int)((0 - _bufferOffset) + _blockSize - _streamPos); in ReadBlock()
48 int numReadBytes = _stream.Read(_bufferBase, (int)(_bufferOffset + _streamPos), size); in ReadBlock()
52 UInt32 pointerToPostion = _bufferOffset + _posLimit; in ReadBlock()
54 _posLimit = (UInt32)(_pointerToLastSafePosition - _bufferOffset); in ReadBlock()
86 _bufferOffset = 0; in Init()
98 UInt32 pointerToPostion = _bufferOffset + _pos; in MovePos()
105 public Byte GetIndexByte(Int32 index) { return _bufferBase[_bufferOffset + _pos + index]; } in GetIndexByte()
115 UInt32 pby = _bufferOffset + _pos + (UInt32)index; in GetMatchLen()
126 _bufferOffset += (UInt32)subValue; in ReduceOffsets()