Home
last modified time | relevance | path

Searched refs:_bufferOffset (Results 1 – 4 of 4) sorted by relevance

/external/lzma/Java/SevenZip/Compression/LZ/
DInWindow.java16 public int _bufferOffset; field in InWindow
26 int offset = _bufferOffset + _pos - _keepSizeBefore; in MoveBlock()
31 int numBytes = _bufferOffset + _streamPos - offset; in MoveBlock()
36 _bufferOffset -= offset; in MoveBlock()
45 int size = (0 - _bufferOffset) + _blockSize - _streamPos; in ReadBlock()
48 int numReadBytes = _stream.read(_bufferBase, _bufferOffset + _streamPos, size); in ReadBlock()
52 int pointerToPostion = _bufferOffset + _posLimit; in ReadBlock()
54 _posLimit = _pointerToLastSafePosition - _bufferOffset; in ReadBlock()
86 _bufferOffset = 0; in Init()
98 int pointerToPostion = _bufferOffset + _pos; in MovePos()
[all …]
DBinTree.java135 int cur = _bufferOffset + _pos; in GetMatches()
158 if (_bufferBase[_bufferOffset + curMatch2] == _bufferBase[cur]) in GetMatches()
164 if (_bufferBase[_bufferOffset + curMatch3] == _bufferBase[cur]) in GetMatches()
191 if (_bufferBase[_bufferOffset + curMatch + kNumHashDirectBytes] != in GetMatches()
214 int pby1 = _bufferOffset + curMatch; in GetMatches()
270 int cur = _bufferOffset + _pos; in Skip()
310 int pby1 = _bufferOffset + curMatch; in Skip()
/external/lzma/CS/7zip/Compress/LZ/
DLzInWindow.cs16 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()
[all …]
DLzBinTree.cs135 UInt32 cur = _bufferOffset + _pos; in GetMatches()
158 if (_bufferBase[_bufferOffset + curMatch2] == _bufferBase[cur]) in GetMatches()
164 if (_bufferBase[_bufferOffset + curMatch3] == _bufferBase[cur]) in GetMatches()
191 if (_bufferBase[_bufferOffset + curMatch + kNumHashDirectBytes] != in GetMatches()
214 UInt32 pby1 = _bufferOffset + curMatch; in GetMatches()
270 UInt32 cur = _bufferOffset + _pos; in Skip()
310 UInt32 pby1 = _bufferOffset + curMatch; in Skip()