Lines Matching refs:rep0
134 uint32_t rep0;
161 /* If 1, it's a repeated match. The distance is one of rep0 .. rep3. */
165 * If 0, distance of a repeated match is rep0.
613 match_byte = dict_get(&s->dict, s->lzma.rep0) << 1;
662 /* Decode a match. The distance will be stored in s->lzma.rep0. */
673 s->lzma.rep1 = s->lzma.rep0;
681 s->lzma.rep0 = dist_slot;
684 s->lzma.rep0 = 2 + (dist_slot & 1);
687 s->lzma.rep0 <<= limit;
688 probs = s->lzma.dist_special + s->lzma.rep0
691 &s->lzma.rep0, limit);
693 rc_direct(&s->rc, &s->lzma.rep0, limit - ALIGN_BITS);
694 s->lzma.rep0 <<= ALIGN_BITS;
696 &s->lzma.rep0, ALIGN_BITS);
703 * seen matches. The distance will be stored in s->lzma.rep0.
730 s->lzma.rep1 = s->lzma.rep0;
731 s->lzma.rep0 = tmp;
748 dict_repeat(&s->dict, &s->lzma.len, s->lzma.rep0);
766 if (!dict_repeat(&s->dict, &s->lzma.len, s->lzma.rep0))
790 s->lzma.rep0 = 0;