Home | History | Annotate | Download | only in LZ

Lines Matching refs:_bufferOffset

16 		public UInt32 _bufferOffset;

26 UInt32 offset = (UInt32)(_bufferOffset) + _pos - _keepSizeBefore;
31 UInt32 numBytes = (UInt32)(_bufferOffset) + _streamPos - offset;
36 _bufferOffset -= offset;
45 int size = (int)((0 - _bufferOffset) + _blockSize - _streamPos);
48 int numReadBytes = _stream.Read(_bufferBase, (int)(_bufferOffset + _streamPos), size);
52 UInt32 pointerToPostion = _bufferOffset + _posLimit;
54 _posLimit = (UInt32)(_pointerToLastSafePosition - _bufferOffset);
86 _bufferOffset = 0;
98 UInt32 pointerToPostion = _bufferOffset + _pos;
105 public Byte GetIndexByte(Int32 index) { return _bufferBase[_bufferOffset + _pos + index]; }
115 UInt32 pby = _bufferOffset + _pos + (UInt32)index;
126 _bufferOffset += (UInt32)subValue;