Searched refs:kMatchMaxLen (Results 1 – 4 of 4) sorted by relevance
/external/lzma/Java/SevenZip/Compression/LZMA/ |
D | Base.java | 87 public static final int kMatchMaxLen = kMatchMinLen + kNumLenSymbols - 1; field in Base
|
D | Encoder.java | 324 int[] _matchDistances = new int[Base.kMatchMaxLen*2+2]; 377 _matchFinder.Create(_dictionarySize, kNumOpts, _numFastBytes, Base.kMatchMaxLen + 1); in Create() 440 Base.kMatchMaxLen - lenRes); in ReadMatchDistances() 568 if (numAvailableBytes > Base.kMatchMaxLen) in GetOptimum() 569 numAvailableBytes = Base.kMatchMaxLen; in GetOptimum() 576 repLens[i] = _matchFinder.GetMatchLen(0 - 1, reps[i], Base.kMatchMaxLen); in GetOptimum() 1377 if (numFastBytes < 5 || numFastBytes > Base.kMatchMaxLen) in SetNumFastBytes()
|
/external/lzma/CS/7zip/Compress/LZMA/ |
D | LzmaBase.cs | 74 public const uint kMatchMaxLen = kMatchMinLen + kNumLenSymbols - 1; field in SevenZip.Compression.LZMA.Base
|
D | LzmaEncoder.cs | 324 UInt32[] _matchDistances = new UInt32[Base.kMatchMaxLen * 2 + 2]; 377 _matchFinder.Create(_dictionarySize, kNumOpts, _numFastBytes, Base.kMatchMaxLen + 1); in Create() 440 Base.kMatchMaxLen - lenRes); in ReadMatchDistances() 568 if (numAvailableBytes > Base.kMatchMaxLen) in GetOptimum() 569 numAvailableBytes = Base.kMatchMaxLen; in GetOptimum() 576 repLens[i] = _matchFinder.GetMatchLen(0 - 1, reps[i], Base.kMatchMaxLen); in GetOptimum() 1380 if (numFastBytes < 5 || numFastBytes > Base.kMatchMaxLen) in SetCoderProperties()
|