Home
last modified time | relevance | path

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

/external/lzma/Java/Tukaani/src/org/tukaani/xz/lz/
DHC4.java21 private int lzPos; field in HC4
43 lzPos = cyclicSize; in HC4()
66 if (++lzPos == Integer.MAX_VALUE) { in movePos()
70 lzPos -= normalizationOffset; in movePos()
96 int delta2 = lzPos - hash.getHash2Pos(); in getMatches()
97 int delta3 = lzPos - hash.getHash3Pos(); in getMatches()
99 hash.updateTables(lzPos); in getMatches()
149 int delta = lzPos - currentMatch; in getMatches()
196 hash.updateTables(lzPos); in skip()
DBT4.java21 private int lzPos; field in BT4
32 lzPos = cyclicSize; in BT4()
49 if (++lzPos == Integer.MAX_VALUE) { in movePos()
53 lzPos -= normalizationOffset; in movePos()
80 int delta2 = lzPos - hash.getHash2Pos(); in getMatches()
81 int delta3 = lzPos - hash.getHash3Pos(); in getMatches()
83 hash.updateTables(lzPos); in getMatches()
138 int delta = lzPos - currentMatch; in getMatches()
196 int delta = lzPos - currentMatch; in skip()
250 hash.updateTables(lzPos); in skip()
/external/lzma/C/
DLzFindMt.c499 p->lzPos = p->historySize + 1; in MatchFinderMt_Init()
524 MatchFinder_Normalize3(p->lzPos - p->historySize - 1, p->hash, p->fixedHashSize); in MatchFinderMt_Normalize()
525 p->lzPos = p->historySize + 1; in MatchFinderMt_Normalize()
536 if (p->lzPos >= kMtMaxValForNormalize - kMtBtBlockSize) in MatchFinderMt_GetNextBlock_Bt()
563 UInt32 lzPos = p->lzPos; in MixMatches2() local
567 hash[hash2Value] = lzPos; in MixMatches2()
570 if (cur[(ptrdiff_t)curMatch2 - lzPos] == cur[0]) in MixMatches2()
573 *distances++ = lzPos - curMatch2 - 1; in MixMatches2()
583 UInt32 lzPos = p->lzPos; in MixMatches3() local
591 lzPos; in MixMatches3()
[all …]
DLzFindMt.h54 UInt32 lzPos; member