Searched refs:rep0 (Results 1 - 2 of 2) sorted by relevance

/freebsd-13-stable/contrib/xz/src/liblzma/lzma/
H A Dlzma_decoder.c181 /// If 1, it's a repeated match. The distance is one of rep0 .. rep3.
184 /// If 0, distance of a repeated match is rep0.
228 uint32_t rep0; ///< Distance of the latest match member in struct:__anon6654
323 uint32_t rep0 = coder->rep0; local
401 len = (uint32_t)(dict_get(&dict, rep0)) << 1;
509 rep1 = rep0;
540 rep0 = symbol;
546 rep0 = 2 + (symbol & 1);
552 rep0 <<
[all...]
/freebsd-13-stable/sys/contrib/xz-embedded/linux/lib/xz/
H A Dxz_dec_lzma2.c134 uint32_t rep0; member in struct:lzma_dec
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
[all...]

Completed in 113 milliseconds