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

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

Completed in 902 milliseconds