Home
last modified time | relevance | path

Searched refs:lenTest2 (Results 1 – 3 of 3) sorted by relevance

/external/lzma/C/
DLzmaEnc.c1284 UInt32 lenTest2; in GetOptimum() local
1291 lenTest2 = temp - 1; in GetOptimum()
1292 if (lenTest2 >= 2) in GetOptimum()
1303 UInt32 offset = cur + 1 + lenTest2; in GetOptimum()
1306 curAndLenPrice = nextRepMatchPrice + GetRepPrice(p, 0, lenTest2, state2, posStateNext); in GetOptimum()
1356 UInt32 lenTest2 = lenTest + 1; in GetOptimum() local
1357 UInt32 limit = lenTest2 + p->numFastBytes; in GetOptimum()
1361 for (; lenTest2 < limit && data[lenTest2] == data2[lenTest2]; lenTest2++); in GetOptimum()
1362 lenTest2 -= lenTest + 1; in GetOptimum()
1363 if (lenTest2 >= 2) in GetOptimum()
[all …]
/external/lzma/Java/SevenZip/Compression/LZMA/
DEncoder.java851 int lenTest2 = _matchFinder.GetMatchLen(0, reps[0], t); in GetOptimum() local
852 if (lenTest2 >= 2) in GetOptimum()
861 int offset = cur + 1 + lenTest2; in GetOptimum()
865 0, lenTest2, state2, posStateNext); in GetOptimum()
911 int lenTest2 = _matchFinder.GetMatchLen(lenTest, reps[repIndex], t); in GetOptimum() local
912 if (lenTest2 >= 2) in GetOptimum()
931 int offset = lenTest + 1 + lenTest2; in GetOptimum()
934 int curAndLenPrice = nextRepMatchPrice + GetRepPrice(0, lenTest2, state2, posStateNext); in GetOptimum()
986 int lenTest2 = _matchFinder.GetMatchLen(lenTest, curBack, t); in GetOptimum() local
987 if (lenTest2 >= 2) in GetOptimum()
[all …]
/external/lzma/CS/7zip/Compress/LZMA/
DLzmaEncoder.cs851 UInt32 lenTest2 = _matchFinder.GetMatchLen(0, reps[0], t); in GetOptimum()
852 if (lenTest2 >= 2) in GetOptimum()
861 UInt32 offset = cur + 1 + lenTest2; in GetOptimum()
865 0, lenTest2, state2, posStateNext); in GetOptimum()
911 UInt32 lenTest2 = _matchFinder.GetMatchLen((Int32)lenTest, reps[repIndex], t); in GetOptimum()
912 if (lenTest2 >= 2) in GetOptimum()
931 UInt32 offset = lenTest + 1 + lenTest2; in GetOptimum()
934 UInt32 curAndLenPrice = nextRepMatchPrice + GetRepPrice(0, lenTest2, state2, posStateNext); in GetOptimum()
986 UInt32 lenTest2 = _matchFinder.GetMatchLen((Int32)lenTest, curBack, t); in GetOptimum()
987 if (lenTest2 >= 2) in GetOptimum()
[all …]