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

  /external/lzma/Java/SevenZip/Compression/LZMA/
Encoder.java 304 SevenZip.Compression.LZ.BinTree _matchFinder = null;
364 if (_matchFinder == null)
371 _matchFinder = bt;
377 _matchFinder.Create(_dictionarySize, kNumOpts, _numFastBytes, Base.kMatchMaxLen + 1);
434 _numDistancePairs = _matchFinder.GetMatches(_matchDistances);
439 lenRes += _matchFinder.GetMatchLen((int)lenRes - 1, _matchDistances[_numDistancePairs - 1],
450 _matchFinder.Skip(num);
562 int numAvailableBytes = _matchFinder.GetNumAvailableBytes() + 1;
576 repLens[i] = _matchFinder.GetMatchLen(0 - 1, reps[i], Base.kMatchMaxLen);
595 byte currentByte = _matchFinder.GetIndexByte(0 - 1);
    [all...]
  /external/lzma/CS/7zip/Compress/LZMA/
LzmaEncoder.cs 304 LZ.IMatchFinder _matchFinder = null;
364 if (_matchFinder == null)
371 _matchFinder = bt;
377 _matchFinder.Create(_dictionarySize, kNumOpts, _numFastBytes, Base.kMatchMaxLen + 1);
434 numDistancePairs = _matchFinder.GetMatches(_matchDistances);
439 lenRes += _matchFinder.GetMatchLen((int)lenRes - 1, _matchDistances[numDistancePairs - 1],
450 _matchFinder.Skip(num);
562 UInt32 numAvailableBytes = _matchFinder.GetNumAvailableBytes() + 1;
576 repLens[i] = _matchFinder.GetMatchLen(0 - 1, reps[i], Base.kMatchMaxLen);
595 Byte currentByte = _matchFinder.GetIndexByte(0 - 1);
    [all...]

Completed in 41 milliseconds