Home
last modified time | relevance | path

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

/external/xz-java/src/org/tukaani/xz/lz/
DHC4.java23 private int lzPos; field in HC4
47 lzPos = cyclicSize; in HC4()
76 if (++lzPos == Integer.MAX_VALUE) { in movePos()
80 lzPos -= normalizationOffset; in movePos()
106 int delta2 = lzPos - hash.getHash2Pos(); in getMatches()
107 int delta3 = lzPos - hash.getHash3Pos(); in getMatches()
109 hash.updateTables(lzPos); in getMatches()
159 int delta = lzPos - currentMatch; in getMatches()
206 hash.updateTables(lzPos); in skip()
DBT4.java23 private int lzPos; field in BT4
36 lzPos = cyclicSize; in BT4()
59 if (++lzPos == Integer.MAX_VALUE) { in movePos()
63 lzPos -= normalizationOffset; in movePos()
90 int delta2 = lzPos - hash.getHash2Pos(); in getMatches()
91 int delta3 = lzPos - hash.getHash3Pos(); in getMatches()
93 hash.updateTables(lzPos); in getMatches()
148 int delta = lzPos - currentMatch; in getMatches()
206 int delta = lzPos - currentMatch; in skip()
260 hash.updateTables(lzPos); in skip()
/external/lzma/C/
DLzFindMt.c552 p->lzPos = p->historySize + 1; in MatchFinderMt_Init()
577 MatchFinder_Normalize3(p->lzPos - p->historySize - 1, p->hash, p->fixedHashSize); in MatchFinderMt_Normalize()
578 p->lzPos = p->historySize + 1; in MatchFinderMt_Normalize()
589 if (p->lzPos >= kMtMaxValForNormalize - kMtBtBlockSize) in MatchFinderMt_GetNextBlock_Bt()
611 UInt32 lzPos = p->lzPos; in MixMatches2() local
615 hash[h2] = lzPos; in MixMatches2()
618 if (cur[(ptrdiff_t)curMatch2 - lzPos] == cur[0]) in MixMatches2()
621 *distances++ = lzPos - curMatch2 - 1; in MixMatches2()
632 UInt32 lzPos = p->lzPos; in MixMatches3() local
638 hash[ h2] = lzPos; in MixMatches3()
[all …]
DLzFindMt.h54 UInt32 lzPos; member