Home
last modified time | relevance | path

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

/freebsd/contrib/tcpdump/
H A Dprint-domain.c813 int pbit, pbyte; in ns_rprint() local
818 pbit = GET_U_1(cp); in ns_rprint()
819 pbyte = (pbit & ~7) / 8; in ns_rprint()
820 if (pbit > 128) { in ns_rprint()
821 ND_PRINT(" %u(bad plen)", pbit); in ns_rprint()
823 } else if (pbit < 128) { in ns_rprint()
826 ND_PRINT(" %u %s", pbit, in ns_rprint()
829 if (pbit > 0) { in ns_rprint()
/freebsd/crypto/openssl/crypto/ec/
H A Dec_mult.c149 int i, cardinality_bits, group_top, kbit, pbit, Z_is_one; in ossl_ec_scalar_mul_ladder() local
283 pbit = 1; in ossl_ec_scalar_mul_ladder()
353 kbit = BN_is_bit_set(k, i) ^ pbit; in ossl_ec_scalar_mul_ladder()
365 pbit ^= kbit; in ossl_ec_scalar_mul_ladder()
368 EC_POINT_CSWAP(pbit, r, s, group_top, Z_is_one); in ossl_ec_scalar_mul_ladder()
/freebsd/lib/libc/nameser/
H A Dns_print.c671 int pbyte, pbit; in ns_sprintrrf() local
677 pbit = *rdata; in ns_sprintrrf()
678 if (pbit > 128) goto formerr; in ns_sprintrrf()
679 pbyte = (pbit & ~7) / 8; in ns_sprintrrf()
683 if (pbit < 128) { in ns_sprintrrf()
693 if (pbit == 0) in ns_sprintrrf()