Lines Matching defs:dist_slot
190 uint16_t dist_slot[DIST_STATES][DIST_SLOTS];
666 uint32_t dist_slot;
677 probs = s->lzma.dist_slot[lzma_get_dist_state(s->lzma.len)];
678 dist_slot = rc_bittree(&s->rc, probs, DIST_SLOTS) - DIST_SLOTS;
680 if (dist_slot < DIST_MODEL_START) {
681 s->lzma.rep0 = dist_slot;
683 limit = (dist_slot >> 1) - 1;
684 s->lzma.rep0 = 2 + (dist_slot & 1);
686 if (dist_slot < DIST_MODEL_END) {
689 - dist_slot - 1;