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

/external/libgdx/gdx/src/com/badlogic/gdx/utils/compression/lzma/
H A DBase.java75 public static final int kMatchMaxLen = kMatchMinLen + kNumLenSymbols - 1; field in class:Base
H A DEncoder.java306 int[] _matchDistances = new int[Base.kMatchMaxLen * 2 + 2];
355 _matchFinder.Create(_dictionarySize, kNumOpts, _numFastBytes, Base.kMatchMaxLen + 1);
404 lenRes += _matchFinder.GetMatchLen((int)lenRes - 1, _matchDistances[_numDistancePairs - 1], Base.kMatchMaxLen
513 if (numAvailableBytes > Base.kMatchMaxLen) numAvailableBytes = Base.kMatchMaxLen;
519 repLens[i] = _matchFinder.GetMatchLen(0 - 1, reps[i], Base.kMatchMaxLen);
1210 if (numFastBytes < 5 || numFastBytes > Base.kMatchMaxLen) return false;
/external/lzma/CS/7zip/Compress/LZMA/
H A DLzmaBase.cs74 public const uint kMatchMaxLen = kMatchMinLen + kNumLenSymbols - 1; field in class:SevenZip.Compression.LZMA.Base
H A DLzmaEncoder.cs324 UInt32[] _matchDistances = new UInt32[Base.kMatchMaxLen * 2 + 2];
377 _matchFinder.Create(_dictionarySize, kNumOpts, _numFastBytes, Base.kMatchMaxLen + 1);
440 Base.kMatchMaxLen - lenRes);
568 if (numAvailableBytes > Base.kMatchMaxLen)
569 numAvailableBytes = Base.kMatchMaxLen;
576 repLens[i] = _matchFinder.GetMatchLen(0 - 1, reps[i], Base.kMatchMaxLen);
1380 if (numFastBytes < 5 || numFastBytes > Base.kMatchMaxLen)
/external/lzma/Java/SevenZip/Compression/LZMA/
H A DBase.java87 public static final int kMatchMaxLen = kMatchMinLen + kNumLenSymbols - 1; field in class:Base
H A DEncoder.java324 int[] _matchDistances = new int[Base.kMatchMaxLen*2+2];
377 _matchFinder.Create(_dictionarySize, kNumOpts, _numFastBytes, Base.kMatchMaxLen + 1);
440 Base.kMatchMaxLen - lenRes);
568 if (numAvailableBytes > Base.kMatchMaxLen)
569 numAvailableBytes = Base.kMatchMaxLen;
576 repLens[i] = _matchFinder.GetMatchLen(0 - 1, reps[i], Base.kMatchMaxLen);
1377 if (numFastBytes < 5 || numFastBytes > Base.kMatchMaxLen)

Completed in 59 milliseconds