Home
last modified time | relevance | path

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

/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 …]