Home | History | Annotate | Download | only in xz-embedded

Lines Matching full: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.
596 match_byte = dict_get(&s->dict, s->lzma.rep0) << 1;
645 /* Decode a match. The distance will be stored in s->lzma.rep0. */
656 s->lzma.rep1 = s->lzma.rep0;
664 s->lzma.rep0 = dist_slot;
667 s->lzma.rep0 = 2 + (dist_slot & 1);
670 s->lzma.rep0 <<= limit;
671 probs = s->lzma.dist_special + s->lzma.rep0
674 &s->lzma.rep0, limit);
676 rc_direct(&s->rc, &s->lzma.rep0, limit - ALIGN_BITS);
677 s->lzma.rep0 <<= ALIGN_BITS;
679 &s->lzma.rep0, ALIGN_BITS);
686 * seen matches. The distance will be stored in s->lzma.rep0.
713 s->lzma.rep1 = s->lzma.rep0;
714 s->lzma.rep0 = tmp;
731 dict_repeat(&s->dict, &s->lzma.len, s->lzma.rep0);
749 if (!dict_repeat(&s->dict, &s->lzma.len, s->lzma.rep0))
773 s->lzma.rep0 = 0;