Home
last modified time | relevance | path

Searched refs:_cyclicBufferPos (Results 1 – 5 of 5) sorted by relevance

/external/lzma/Java/SevenZip/Compression/LZ/
DBinTree.java9 int _cyclicBufferPos; field in BinTree
59 _cyclicBufferPos = 0; in Init()
65 if (++_cyclicBufferPos >= _cyclicBufferSize) in MovePos()
66 _cyclicBufferPos = 0; in MovePos()
181 int ptr0 = (_cyclicBufferPos << 1) + 1; in GetMatches()
182 int ptr1 = (_cyclicBufferPos << 1); in GetMatches()
210 int cyclicPos = ((delta <= _cyclicBufferPos) ? in GetMatches()
211 (_cyclicBufferPos - delta) : in GetMatches()
212 (_cyclicBufferPos - delta + _cyclicBufferSize)) << 1; in GetMatches()
290 int ptr0 = (_cyclicBufferPos << 1) + 1; in Skip()
[all …]
/external/lzma/CS/7zip/Compress/LZ/
DLzBinTree.cs9 UInt32 _cyclicBufferPos; field in SevenZip.Compression.LZ.BinTree
59 _cyclicBufferPos = 0; in Init()
65 if (++_cyclicBufferPos >= _cyclicBufferSize) in MovePos()
66 _cyclicBufferPos = 0; in MovePos()
181 UInt32 ptr0 = (_cyclicBufferPos << 1) + 1; in GetMatches()
182 UInt32 ptr1 = (_cyclicBufferPos << 1); in GetMatches()
210 UInt32 cyclicPos = ((delta <= _cyclicBufferPos) ? in GetMatches()
211 (_cyclicBufferPos - delta) : in GetMatches()
212 (_cyclicBufferPos - delta + _cyclicBufferSize)) << 1; in GetMatches()
290 UInt32 ptr0 = (_cyclicBufferPos << 1) + 1; in Skip()
[all …]
/external/lzma/C/
DLzFind.c390 UInt32 _cyclicBufferPos, UInt32 _cyclicBufferSize, UInt32 cutValue, in Hc_GetMatchesSpec() argument
423 son[_cyclicBufferPos] = curMatch; in Hc_GetMatchesSpec()
431 … curMatch = son[_cyclicBufferPos - delta + ((delta > _cyclicBufferPos) ? _cyclicBufferSize : 0)]; in Hc_GetMatchesSpec()
466 UInt32 _cyclicBufferPos, UInt32 _cyclicBufferSize, UInt32 cutValue, in GetMatchesSpec1() argument
469 CLzRef *ptr0 = son + ((size_t)_cyclicBufferPos << 1) + 1; in GetMatchesSpec1()
470 CLzRef *ptr1 = son + ((size_t)_cyclicBufferPos << 1); in GetMatchesSpec1()
481 …CLzRef *pair = son + ((size_t)(_cyclicBufferPos - delta + ((delta > _cyclicBufferPos) ? _cyclicBuf… in GetMatchesSpec1()
523 UInt32 _cyclicBufferPos, UInt32 _cyclicBufferSize, UInt32 cutValue) in SkipMatchesSpec() argument
525 CLzRef *ptr0 = son + ((size_t)_cyclicBufferPos << 1) + 1; in SkipMatchesSpec()
526 CLzRef *ptr1 = son + ((size_t)_cyclicBufferPos << 1); in SkipMatchesSpec()
[all …]
DLzFindMt.c246 size_t _cyclicBufferPos, UInt32 _cyclicBufferSize, UInt32 _cutValue, in GetMatchesSpecN() argument
254 CLzRef *ptr0 = son + ((size_t)_cyclicBufferPos << 1) + 1; in GetMatchesSpecN()
255 CLzRef *ptr1 = son + ((size_t)_cyclicBufferPos << 1); in GetMatchesSpecN()
282 …CLzRef *pair = son + ((size_t)(_cyclicBufferPos - delta + ((_cyclicBufferPos < delta) ? _cyclicBuf… in GetMatchesSpecN()
333 _cyclicBufferPos++; in GetMatchesSpecN()
DLzFind.h82 UInt32 _cyclicBufferPos, UInt32 _cyclicBufferSize, UInt32 _cutValue,