HomeSort by relevance Sort by last modified time
    Searched refs:GetMatchLen (Results 1 - 8 of 8) sorted by null

  /external/lzma/CS/7zip/Compress/LZ/
IMatchFinder.cs 13 UInt32 GetMatchLen(Int32 index, UInt32 distance, UInt32 limit);
LzInWindow.cs 108 public UInt32 GetMatchLen(Int32 index, UInt32 distance, UInt32 limit)
LzBinTree.cs 74 public new UInt32 GetMatchLen(Int32 index, UInt32 distance, UInt32 limit)
75 { return base.GetMatchLen(index, distance, limit); }
  /external/libgdx/gdx/src/com/badlogic/gdx/utils/compression/lz/
InWindow.java 101 public int GetMatchLen (int index, int distance, int limit) {
  /external/lzma/Java/SevenZip/Compression/LZ/
InWindow.java 108 public int GetMatchLen(int index, int distance, int limit)
  /external/libgdx/gdx/src/com/badlogic/gdx/utils/compression/lzma/
Encoder.java 404 lenRes += _matchFinder.GetMatchLen((int)lenRes - 1, _matchDistances[_numDistancePairs - 1], Base.kMatchMaxLen
519 repLens[i] = _matchFinder.GetMatchLen(0 - 1, reps[i], Base.kMatchMaxLen);
752 int lenTest2 = _matchFinder.GetMatchLen(0, reps[0], t);
781 int lenTest = _matchFinder.GetMatchLen(0 - 1, reps[repIndex], numAvailableBytes);
803 int lenTest2 = _matchFinder.GetMatchLen(lenTest, reps[repIndex], t);
873 int lenTest2 = _matchFinder.GetMatchLen(lenTest, curBack, t);
    [all...]
  /external/lzma/Java/SevenZip/Compression/LZMA/
Encoder.java 439 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);
    [all...]
  /external/lzma/CS/7zip/Compress/LZMA/
LzmaEncoder.cs 439 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);
    [all...]

Completed in 372 milliseconds