Lines Matching refs:rep0
1290 uint32_t rep0;
1317 /* If 1, it's a repeated match. The distance is one of rep0 .. rep3. */
1321 * If 0, distance of a repeated match is rep0.
1738 match_byte = dict_get(&s->dict, s->lzma.rep0) << 1;
1787 /* Decode a match. The distance will be stored in s->lzma.rep0. */
1798 s->lzma.rep1 = s->lzma.rep0;
1806 s->lzma.rep0 = dist_slot;
1809 s->lzma.rep0 = 2 + (dist_slot & 1);
1812 s->lzma.rep0 <<= limit;
1813 probs = s->lzma.dist_special + s->lzma.rep0
1816 &s->lzma.rep0, limit);
1818 rc_direct(&s->rc, &s->lzma.rep0, limit - ALIGN_BITS);
1819 s->lzma.rep0 <<= ALIGN_BITS;
1821 &s->lzma.rep0, ALIGN_BITS);
1828 * seen matches. The distance will be stored in s->lzma.rep0.
1855 s->lzma.rep1 = s->lzma.rep0;
1856 s->lzma.rep0 = tmp;
1873 dict_repeat(&s->dict, &s->lzma.len, s->lzma.rep0);
1891 if (!dict_repeat(&s->dict, &s->lzma.len, s->lzma.rep0))
1915 s->lzma.rep0 = 0;