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

/freebsd-11-stable/contrib/tcpdump/
H A Dprint-domain.c502 int pbit, pbyte; local
507 pbit = *cp;
508 pbyte = (pbit & ~7) / 8;
509 if (pbit > 128) {
510 ND_PRINT((ndo, " %u(bad plen)", pbit));
512 } else if (pbit < 128) {
517 ND_PRINT((ndo, " %u %s", pbit,
520 if (pbit > 0) {
/freebsd-11-stable/crypto/openssl/crypto/ec/
H A Dec_mult.c344 int i, cardinality_bits, group_top, kbit, pbit, Z_is_one; local
433 pbit = 0;
499 * This is XOR. pbit tracks the previous bit of k.
503 kbit = BN_is_bit_set(k, i) ^ pbit;
510 * pbit logic merges this cswap with that of the
513 pbit ^= kbit;
516 EC_POINT_CSWAP(pbit, r, s, group_top, Z_is_one);
/freebsd-11-stable/lib/libc/nameser/
H A Dns_print.c675 int pbyte, pbit; local
681 pbit = *rdata;
682 if (pbit > 128) goto formerr;
683 pbyte = (pbit & ~7) / 8;
687 if (pbit < 128) {
697 if (pbit == 0)

Completed in 179 milliseconds