Searched refs:GetMatchLen (Results 1 - 6 of 6) sorted by relevance

/external/lzma/CS/7zip/Compress/LZ/
H A DIMatchFinder.cs13 UInt32 GetMatchLen(Int32 index, UInt32 distance, UInt32 limit); method in interface:SevenZip.Compression.LZ.IInWindowStream
H A DLzInWindow.cs108 public UInt32 GetMatchLen(Int32 index, UInt32 distance, UInt32 limit) method in class:SevenZip.Compression.LZ.InWindow
H A DLzBinTree.cs74 public new UInt32 GetMatchLen(Int32 index, UInt32 distance, UInt32 limit) method in class:SevenZip.Compression.LZ.BinTree
75 { return base.GetMatchLen(index, distance, limit); }
/external/lzma/Java/SevenZip/Compression/LZ/
H A DInWindow.java108 public int GetMatchLen(int index, int distance, int limit) method in class:InWindow
/external/lzma/CS/7zip/Compress/LZMA/
H A DLzmaEncoder.cs439 lenRes += _matchFinder.GetMatchLen((int)lenRes - 1, _matchDistances[numDistancePairs - 1],
576 repLens[i] = _matchFinder.GetMatchLen(0 - 1, reps[i], Base.kMatchMaxLen);
851 UInt32 lenTest2 = _matchFinder.GetMatchLen(0, reps[0], t);
883 UInt32 lenTest = _matchFinder.GetMatchLen(0 - 1, reps[repIndex], numAvailableBytes);
911 UInt32 lenTest2 = _matchFinder.GetMatchLen((Int32)lenTest, reps[repIndex], t);
986 UInt32 lenTest2 = _matchFinder.GetMatchLen((Int32)lenTest, curBack, t);
/external/lzma/Java/SevenZip/Compression/LZMA/
H A DEncoder.java439 lenRes += _matchFinder.GetMatchLen((int)lenRes - 1, _matchDistances[_numDistancePairs - 1],
576 repLens[i] = _matchFinder.GetMatchLen(0 - 1, reps[i], Base.kMatchMaxLen);
851 int lenTest2 = _matchFinder.GetMatchLen(0, reps[0], t);
883 int lenTest = _matchFinder.GetMatchLen(0 - 1, reps[repIndex], numAvailableBytes);
911 int lenTest2 = _matchFinder.GetMatchLen(lenTest, reps[repIndex], t);
986 int lenTest2 = _matchFinder.GetMatchLen(lenTest, curBack, t);

Completed in 795 milliseconds