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.
628 match_byte = dict_get(&s->dict, s->lzma.rep0) << 1;
677 /* Decode a match. The distance will be stored in s->lzma.rep0. */
688 s->lzma.rep1 = s->lzma.rep0;
696 s->lzma.rep0 = dist_slot;
699 s->lzma.rep0 = 2 + (dist_slot & 1);
702 s->lzma.rep0 <<= limit;
703 probs = s->lzma.dist_special + s->lzma.rep0
706 &s->lzma.rep0, limit);
708 rc_direct(&s->rc, &s->lzma.rep0, limit - ALIGN_BITS);
709 s->lzma.rep0 <<= ALIGN_BITS;
711 &s->lzma.rep0, ALIGN_BITS);
718 * seen matches. The distance will be stored in s->lzma.rep0.
745 s->lzma.rep1 = s->lzma.rep0;
746 s->lzma.rep0 = tmp;
763 dict_repeat(&s->dict, &s->lzma.len, s->lzma.rep0);
781 if (!dict_repeat(&s->dict, &s->lzma.len, s->lzma.rep0))
805 s->lzma.rep0 = 0;