Home
last modified time | relevance | path

Searched refs:rbits (Results 1 – 3 of 3) sorted by relevance

/freebsd-12.1/contrib/libarchive/libarchive/
H A Darchive_read_support_format_lha.c2029 unsigned rbits; in lzh_read_blocks() local
2200 rbits = lzh_br_bits(br, ds->pt.max_bits); in lzh_read_blocks()
2201 c = lzh_decode_huffman(&(ds->pt), rbits); in lzh_read_blocks()
2787 lzh_decode_huffman_tree(struct huffman *hf, unsigned rbits, int c) in lzh_decode_huffman_tree() argument
2798 if (rbits & (1U << extlen)) in lzh_decode_huffman_tree()
2807 lzh_decode_huffman(struct huffman *hf, unsigned rbits) in lzh_decode_huffman() argument
2814 c = hf->tbl[rbits >> hf->shift_bits]; in lzh_decode_huffman()
2818 return (lzh_decode_huffman_tree(hf, rbits, c)); in lzh_decode_huffman()
H A Darchive_read_support_format_cab.c3046 unsigned rbits; in lzx_read_bitlen() local
3058 rbits = lzx_br_bits(br, ds->pt.max_bits); in lzx_read_bitlen()
3059 c = lzx_decode_huffman(&(ds->pt), rbits); in lzx_read_bitlen()
3092 rbits = lzx_br_bits(br, ds->pt.max_bits); in lzx_read_bitlen()
3093 c = lzx_decode_huffman(&(ds->pt), rbits); in lzx_read_bitlen()
3220 lzx_decode_huffman(struct huffman *hf, unsigned rbits) in lzx_decode_huffman() argument
3223 c = hf->tbl[rbits]; in lzx_decode_huffman()
/freebsd-12.1/contrib/gcclibs/libdecnumber/
H A DdecNumber.c1068 uByte rbits = rhs->bits; /* save */ in decNumberPower() local
1074 if (!(rbits & DECNEG)) in decNumberPower()