Searched refs:bitno (Results 1 - 5 of 5) sorted by relevance

/freebsd-9.3-release/contrib/bzip2/
H A Dunzcrash.c67 int bitno = bit % 8; local
68 uchar mask = 1 << bitno;
70 // byteno, bitno, (int)mask );
/freebsd-9.3-release/contrib/bind9/lib/dns/
H A Drpz.c99 #define DNS_RPZ_IP_BIT(ip, bitno) \
100 (1 & ((ip)->w[(bitno)/DNS_RPZ_CIDR_WORD_BITS] >> \
101 (DNS_RPZ_CIDR_WORD_BITS - 1 - ((bitno) % DNS_RPZ_CIDR_WORD_BITS))))
/freebsd-9.3-release/contrib/gdb/gdb/
H A Dgdbtypes.c2672 int bitno;
2674 for (bitno = 0; bitno < nbits; bitno++)
2676 if ((bitno % 8) == 0)
2680 if (B_TST (bits, bitno))
2671 int bitno; local
/freebsd-9.3-release/contrib/gcc/
H A Dgenautomata.c3300 /* Set bit number bitno in the bit string. The macro is not side
3302 #define SET_BIT(bitstring, bitno) \
3303 (((char *) (bitstring)) [(bitno) / CHAR_BIT] |= 1 << (bitno) % CHAR_BIT)
3305 #define CLEAR_BIT(bitstring, bitno) \
3306 (((char *) (bitstring)) [(bitno) / CHAR_BIT] &= ~(1 << (bitno) % CHAR_BIT))
3308 /* Test if bit number bitno in the bitstring is set. The macro is not
3310 #define TEST_BIT(bitstring, bitno) \
3311 (((char *) (bitstring)) [(bitno) / CHAR_BI
[all...]
H A Dtree-ssa-loop-ivopts.c2546 unsigned bitno = TYPE_PRECISION (TREE_TYPE (t)) - 1; local
2549 if (bitno < HOST_BITS_PER_WIDE_INT)
2554 bitno -= HOST_BITS_PER_WIDE_INT;
2557 return (w >> bitno) & 1;

Completed in 113 milliseconds