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

  /external/lzma/Java/SevenZip/Compression/LZMA/
Encoder.java 324 int[] _matchDistances = new int[Base.kMatchMaxLen*2+2];
434 _numDistancePairs = _matchFinder.GetMatches(_matchDistances);
437 lenRes = _matchDistances[_numDistancePairs - 2];
439 lenRes += _matchFinder.GetMatchLen((int)lenRes - 1, _matchDistances[_numDistancePairs - 1],
590 backRes = _matchDistances[numDistancePairs - 1] + Base.kNumRepDistances;
672 while (len > _matchDistances[offs])
676 int distance = _matchDistances[offs + 1];
686 if (len == _matchDistances[offs])
954 for (numDistancePairs = 0; newLen > _matchDistances[numDistancePairs]; numDistancePairs += 2) ;
955 _matchDistances[numDistancePairs] = newLen;
    [all...]
  /external/lzma/CS/7zip/Compress/LZMA/
LzmaEncoder.cs 324 UInt32[] _matchDistances = new UInt32[Base.kMatchMaxLen * 2 + 2];
434 numDistancePairs = _matchFinder.GetMatches(_matchDistances);
437 lenRes = _matchDistances[numDistancePairs - 2];
439 lenRes += _matchFinder.GetMatchLen((int)lenRes - 1, _matchDistances[numDistancePairs - 1],
590 backRes = _matchDistances[numDistancePairs - 1] + Base.kNumRepDistances;
672 while (len > _matchDistances[offs])
676 UInt32 distance = _matchDistances[offs + 1];
686 if (len == _matchDistances[offs])
954 for (numDistancePairs = 0; newLen > _matchDistances[numDistancePairs]; numDistancePairs += 2) ;
955 _matchDistances[numDistancePairs] = newLen;
    [all...]

Completed in 31 milliseconds