Searched refs:rbits (Results 1 - 4 of 4) sorted by path

/freebsd-11-stable/contrib/gcclibs/libdecnumber/
H A DdecNumber.c1068 uByte rbits = rhs->bits; /* save */ local
1074 if (!(rbits & DECNEG))
/freebsd-11-stable/crypto/openssh/
H A Dsshconnect1.c506 int bits, rbits; local
529 rbits = BN_num_bits(server_key->rsa->n);
530 if (bits != rbits) {
532 "actual size is %d bits vs. announced %d.", rbits, bits);
542 rbits = BN_num_bits(host_key->rsa->n);
543 if (bits != rbits) {
545 "actual size is %d bits vs. announced %d.", rbits, bits);
/freebsd-11-stable/contrib/libarchive/libarchive/
H A Darchive_read_support_format_cab.c3045 unsigned rbits; local
3057 rbits = lzx_br_bits(br, ds->pt.max_bits);
3058 c = lzx_decode_huffman(&(ds->pt), rbits);
3091 rbits = lzx_br_bits(br, ds->pt.max_bits);
3092 c = lzx_decode_huffman(&(ds->pt), rbits);
3219 lzx_decode_huffman(struct huffman *hf, unsigned rbits) argument
3222 c = hf->tbl[rbits];
H A Darchive_read_support_format_lha.c2121 unsigned rbits; local
2292 rbits = lzh_br_bits(br, ds->pt.max_bits);
2293 c = lzh_decode_huffman(&(ds->pt), rbits);
2879 lzh_decode_huffman_tree(struct huffman *hf, unsigned rbits, int c) argument
2890 if (rbits & (1U << extlen))
2899 lzh_decode_huffman(struct huffman *hf, unsigned rbits) argument
2906 c = hf->tbl[rbits >> hf->shift_bits];
2910 return (lzh_decode_huffman_tree(hf, rbits, c));

Completed in 138 milliseconds