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

  /external/lzma/Java/SevenZip/Compression/LZMA/
Encoder.java 550 int lenMain, numDistancePairs;
553 lenMain = ReadMatchDistances();
557 lenMain = _longestMatchLength;
588 if (lenMain >= _numFastBytes)
591 MovePos(lenMain - 1);
592 return lenMain;
598 if (lenMain < 2 && currentByte != matchByte && repLens[repMaxIndex] < 2)
625 int lenEnd = ((lenMain >= repLens[repMaxIndex]) ? lenMain : repLens[repMaxIndex]);
669 if (len <= lenMain)
    [all...]
  /external/lzma/CS/7zip/Compress/LZMA/
LzmaEncoder.cs 550 UInt32 lenMain, numDistancePairs;
553 ReadMatchDistances(out lenMain, out numDistancePairs);
557 lenMain = _longestMatchLength;
588 if (lenMain >= _numFastBytes)
591 MovePos(lenMain - 1);
592 return lenMain;
598 if (lenMain < 2 && currentByte != matchByte && repLens[repMaxIndex] < 2)
625 UInt32 lenEnd = ((lenMain >= repLens[repMaxIndex]) ? lenMain : repLens[repMaxIndex]);
669 if (len <= lenMain)
    [all...]

Completed in 49 milliseconds