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

  /external/lzma/Java/Tukaani/src/org/tukaani/xz/lzma/
LZMADecoder.java 80 int distSlot = rc.decodeBitTree(distSlots[getDistState(len)]);
82 if (distSlot < DIST_MODEL_START) {
83 reps[0] = distSlot;
85 int limit = (distSlot >> 1) - 1;
86 reps[0] = (2 | (distSlot & 1)) << limit;
88 if (distSlot < DIST_MODEL_END) {
90 distSpecial[distSlot - DIST_MODEL_START]);
LZMAEncoder.java 286 int distSlot = getDistSlot(dist);
287 rc.encodeBitTree(distSlots[getDistState(len)], distSlot);
289 if (distSlot >= DIST_MODEL_START) {
290 int footerBits = (distSlot >>> 1) - 1;
291 int base = (2 | (distSlot & 1)) << footerBits;
294 if (distSlot < DIST_MODEL_END) {
296 distSpecial[distSlot - DIST_MODEL_START],
418 int distSlot = getDistSlot(dist);
419 price += distSlotPrices[distState][distSlot]
430 for (int distSlot = 0; distSlot < distSlotPricesSize; ++distSlot
    [all...]

Completed in 328 milliseconds