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

/openbsd-current/gnu/usr.bin/gcc/gcc/f/
H A Dbit.c79 ffebitCount bitno;
86 bitno = offset % CHAR_BIT;
88 == ((b->bits[element] & ((unsigned char) 1 << bitno)) == 0 ? FALSE : TRUE))
148 ffebitCount bitno;
155 bitno = offset % CHAR_BIT;
156 b->bits[element] = (((unsigned char) (value ? 1 : 0)) << bitno)
157 | (b->bits[element] & ~((unsigned char) 1 << bitno));
179 ffebitCount bitno;
189 bitno = offset % CHAR_BIT;
190 *value = (b->bits[element] & ((unsigned char) 1 << bitno))
78 ffebitCount bitno; local
147 ffebitCount bitno; local
178 ffebitCount bitno; local
[all...]
/openbsd-current/sys/arch/loongson/loongson/
H A Dyeeloong_machdep.c381 int lvl, bitno, ret; local
391 for (bitno = bit, mask = 1UL << bitno; mask != 0;
392 bitno--, mask >>= 1) {
397 for (ih = bonito_intrhand[BONITO_ISA_IRQ(bitno)];
419 bitno);
421 loongson_isa_specific_eoi(bitno);
/openbsd-current/sys/arch/alpha/alpha/
H A Ddec_6600.c432 unsigned int bitno; local
436 for (bitno = 0; bitno < nitems(ev6_syndrome); bitno++)
437 if (syndrome == ev6_syndrome[bitno])
440 if (bitno < 64)
441 printf("(%d)\n", bitno);
442 else if (bitno < nitems(ev6_syndrome))
443 printf("(CB%d)\n", bitno - 64);
/openbsd-current/sys/net/
H A Dbsd-comp.c460 u_int bitno = 32; local
491 bitno -= n_bits; \
492 accm |= ((ent) << bitno); \
496 bitno += 8; \
497 } while (bitno <= 24); \
615 if (bitno < 32)
625 if (bitno != 32)
626 PUTBYTE((accm | (0xff << (bitno-8))) >> 24);
675 u_int bitno = 7; local
733 bitno
798 u_int bitno = 32; /* 1st valid bit in accm */ local
[all...]
/openbsd-current/sys/arch/loongson/dev/
H A Dvoyager.c211 uint32_t isr, imr, mask, bitno; local
221 for (bitno = 0, mask = 1 << 0; isr != 0; bitno++, mask <<= 1) {
225 for (ih = sc->sc_intr[bitno]; ih != NULL; ih = ih->ih_next) {
H A Dbonito.c686 int lvl, bitno; local
696 for (bitno = startbit, mask = 1UL << bitno; mask != 0;
697 bitno--, mask >>= 1) {
702 for (ih = bonito_intrhand[bitno]; ih != NULL;
712 printf("spurious interrupt %d\n", bitno);
/openbsd-current/regress/sbin/ifconfig/
H A Difaddr.c1164 int bitno, found = 0; local
1167 for (bitno = 0; ifm_status_valid_list[bitno] != 0; bitno++) {
1173 ifm_status_valid_list[bitno])
/openbsd-current/gnu/usr.bin/binutils/gdb/
H A Dgdbtypes.c2659 int bitno;
2661 for (bitno = 0; bitno < nbits; bitno++)
2663 if ((bitno % 8) == 0)
2667 if (B_TST (bits, bitno))
2658 int bitno; local
/openbsd-current/gnu/gcc/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;
/openbsd-current/gnu/usr.bin/gcc/gcc/
H A Dgenautomata.c3562 /* Set bit number bitno in the bit string. The macro is not side
3564 #define SET_BIT(bitstring, bitno) \
3565 (((char *) (bitstring)) [(bitno) / CHAR_BIT] |= 1 << (bitno) % CHAR_BIT)
3567 /* Test if bit number bitno in the bitstring is set. The macro is not
3569 #define TEST_BIT(bitstring, bitno) \
3570 (((char *) (bitstring)) [(bitno) / CHAR_BIT] >> (bitno) % CHAR_BIT & 1)
/openbsd-current/sbin/ifconfig/
H A Difconfig.c3412 int bitno, found = 0; local
3415 for (bitno = 0; ifm_status_valid_list[bitno] != 0; bitno++) {
3421 ifm_status_valid_list[bitno])

Completed in 399 milliseconds