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

  /external/lzma/Java/Tukaani/src/org/tukaani/xz/lzma/
LZMAEncoderFast.java 85 int mainDist = 0;
89 mainDist = matches.dist[matches.count - 1];
92 back = mainDist + REPS;
99 if (!changePair(matches.dist[matches.count - 2], mainDist))
104 mainDist = matches.dist[matches.count - 1];
107 if (mainLen == MATCH_LEN_MIN && mainDist >= 0x80)
113 || (bestRepLen + 2 >= mainLen && mainDist >= (1 << 9))
114 || (bestRepLen + 3 >= mainLen && mainDist >= (1 << 15))) {
132 if ((newLen >= mainLen && newDist < mainDist)
134 && !changePair(mainDist, newDist)
    [all...]
LZMAEncoderNormal.java 146 // Initialize mainLen and mainDist to the longest match found
149 int mainDist = 0;
152 mainDist = matches.dist[matches.count - 1];
156 back = mainDist + REPS;
  /external/lzma/C/
LzmaEnc.c     [all...]

Completed in 4464 milliseconds