| /src/external/gpl3/binutils/dist/libiberty/ |
| ffs.c | 1 /* ffs -- Find the first bit set in the parameter 5 Find the first (least significant) bit set in @var{valu}. Bits are 6 numbered from right to left, starting with bit 1 (corresponding to the 16 register int bit; local 21 for (bit = 1; !(valu & 1); bit++) 24 return bit;
|
| /src/external/gpl3/binutils.old/dist/libiberty/ |
| ffs.c | 1 /* ffs -- Find the first bit set in the parameter 5 Find the first (least significant) bit set in @var{valu}. Bits are 6 numbered from right to left, starting with bit 1 (corresponding to the 16 register int bit; local 21 for (bit = 1; !(valu & 1); bit++) 24 return bit;
|
| /src/external/gpl3/gcc/dist/libiberty/ |
| ffs.c | 1 /* ffs -- Find the first bit set in the parameter 5 Find the first (least significant) bit set in @var{valu}. Bits are 6 numbered from right to left, starting with bit 1 (corresponding to the 16 register int bit; local 21 for (bit = 1; !(valu & 1); bit++) 24 return bit;
|
| /src/external/gpl3/gcc.old/dist/libiberty/ |
| ffs.c | 1 /* ffs -- Find the first bit set in the parameter 5 Find the first (least significant) bit set in @var{valu}. Bits are 6 numbered from right to left, starting with bit 1 (corresponding to the 16 register int bit; local 21 for (bit = 1; !(valu & 1); bit++) 24 return bit;
|
| /src/external/gpl3/gdb/dist/libiberty/ |
| ffs.c | 1 /* ffs -- Find the first bit set in the parameter 5 Find the first (least significant) bit set in @var{valu}. Bits are 6 numbered from right to left, starting with bit 1 (corresponding to the 16 register int bit; local 21 for (bit = 1; !(valu & 1); bit++) 24 return bit;
|
| /src/external/gpl3/gdb.old/dist/libiberty/ |
| ffs.c | 1 /* ffs -- Find the first bit set in the parameter 5 Find the first (least significant) bit set in @var{valu}. Bits are 6 numbered from right to left, starting with bit 1 (corresponding to the 16 register int bit; local 21 for (bit = 1; !(valu & 1); bit++) 24 return bit;
|
| /src/external/mpl/bind/dist/lib/dns/include/dns/ |
| bit.h | 1 /* $NetBSD: bit.h,v 1.8 2025/01/26 16:25:26 christos Exp $ */ 18 /*! \file dns/bit.h */ 24 #define DNS_BIT_SET(bit, bitset) (*(bitset) |= ((dns_bitset_t)1 << (bit))) 25 #define DNS_BIT_CLEAR(bit, bitset) (*(bitset) &= ~((dns_bitset_t)1 << (bit))) 26 #define DNS_BIT_CHECK(bit, bitset) \ 27 ((*(bitset) & ((dns_bitset_t)1 << (bit))) == ((dns_bitset_t)1 << (bit)))
|
| /src/external/mpl/dhcp/bind/dist/lib/dns/include/dns/ |
| bit.h | 1 /* $NetBSD: bit.h,v 1.1 2024/02/18 20:57:35 christos Exp $ */ 19 /*! \file dns/bit.h */ 25 #define DNS_BIT_SET(bit, bitset) (*(bitset) |= ((dns_bitset_t)1 << (bit))) 26 #define DNS_BIT_CLEAR(bit, bitset) (*(bitset) &= ~((dns_bitset_t)1 << (bit))) 27 #define DNS_BIT_CHECK(bit, bitset) \ 28 ((*(bitset) & ((dns_bitset_t)1 << (bit))) == ((dns_bitset_t)1 << (bit)))
|
| /src/sys/arch/m68k/include/ |
| asm_single.h | 31 * Provide bit manipulation macro's that resolve to a single instruction. 38 #define single_inst_bset_b(var, bit) \ 41 : "di" ((u_char)bit)) 43 #define single_inst_bclr_b(var, bit) \ 46 : "di" ((u_char)~(bit))) 49 #define single_inst_bset_w(var, bit) \ 52 : "di" ((u_short)bit)) 54 #define single_inst_bclr_w(var, bit) \ 57 : "di" ((u_short)~(bit))) 60 #define single_inst_bset_l(var, bit) \ [all...] |
| /src/external/gpl3/gcc/dist/libgcc/config/lm32/ |
| _udivmodsi4.c | 32 USItype bit = 1; local 35 while (den < num && bit && !(den & (1L << 31))) 38 bit <<= 1; 40 while (bit) 45 res |= bit; 47 bit >>= 1;
|
| /src/external/gpl3/gcc/dist/libgcc/ |
| udivmodhi4.c | 27 unsigned short bit = 1; local 30 while (den < num && bit && !(den & (1U<<15))) 33 bit <<=1; 35 while (bit) 40 res |= bit; 42 bit >>=1;
|
| udivmodsi4.c | 27 unsigned long bit = 1; local 30 while (den < num && bit && !(den & (1L<<31))) 33 bit <<=1; 35 while (bit) 40 res |= bit; 42 bit >>=1;
|
| /src/external/gpl3/gcc.old/dist/libgcc/config/lm32/ |
| _udivmodsi4.c | 32 USItype bit = 1; local 35 while (den < num && bit && !(den & (1L << 31))) 38 bit <<= 1; 40 while (bit) 45 res |= bit; 47 bit >>= 1;
|
| /src/external/gpl3/gcc.old/dist/libgcc/ |
| udivmodhi4.c | 27 unsigned short bit = 1; local 30 while (den < num && bit && !(den & (1U<<15))) 33 bit <<=1; 35 while (bit) 40 res |= bit; 42 bit >>=1;
|
| udivmodsi4.c | 27 unsigned long bit = 1; local 30 while (den < num && bit && !(den & (1L<<31))) 33 bit <<=1; 35 while (bit) 40 res |= bit; 42 bit >>=1;
|
| /src/sys/external/gpl2/dts/dist/include/dt-bindings/mfd/ |
| stm32f4-rcc.h | 36 #define STM32F4_AHB1_RESET(bit) (STM32F4_RCC_AHB1_##bit + (0x10 * 8)) 37 #define STM32F4_AHB1_CLOCK(bit) (STM32F4_RCC_AHB1_##bit) 46 #define STM32F4_AHB2_RESET(bit) (STM32F4_RCC_AHB2_##bit + (0x14 * 8)) 47 #define STM32F4_AHB2_CLOCK(bit) (STM32F4_RCC_AHB2_##bit + 0x20) 53 #define STM32F4_AHB3_RESET(bit) (STM32F4_RCC_AHB3_##bit + (0x18 * 8) [all...] |
| stm32f7-rcc.h | 36 #define STM32F7_AHB1_RESET(bit) (STM32F7_RCC_AHB1_##bit + (0x10 * 8)) 37 #define STM32F7_AHB1_CLOCK(bit) (STM32F7_RCC_AHB1_##bit) 47 #define STM32F7_AHB2_RESET(bit) (STM32F7_RCC_AHB2_##bit + (0x14 * 8)) 48 #define STM32F7_AHB2_CLOCK(bit) (STM32F7_RCC_AHB2_##bit + 0x20) 54 #define STM32F7_AHB3_RESET(bit) (STM32F7_RCC_AHB3_##bit + (0x18 * 8) [all...] |
| stm32h7-rcc.h | 19 #define STM32H7_AHB3_RESET(bit) (STM32H7_RCC_AHB3_##bit + (0x7C * 8)) 30 #define STM32H7_AHB1_RESET(bit) (STM32H7_RCC_AHB1_##bit + (0x80 * 8)) 39 #define STM32H7_AHB2_RESET(bit) (STM32H7_RCC_AHB2_##bit + (0x84 * 8)) 58 #define STM32H7_AHB4_RESET(bit) (STM32H7_RCC_AHB4_##bit + (0x88 * 8)) 64 #define STM32H7_APB3_RESET(bit) (STM32H7_RCC_APB3_##bit + (0x8C * 8) [all...] |
| /src/sys/arch/arm/at91/ |
| at91piovar.h | 51 int at91pio_read(struct at91pio_softc *, int bit); 52 void at91pio_set(struct at91pio_softc *, int bit); 53 void at91pio_clear(struct at91pio_softc *, int bit); 54 void at91pio_in(struct at91pio_softc *, int bit); 55 void at91pio_out(struct at91pio_softc *, int bit); 56 void at91pio_per(struct at91pio_softc *, int bit, int perab); 58 void *at91pio_intr_establish(struct at91pio_softc *,int bit, 60 void at91pio_intr_disestablish(struct at91pio_softc *,int bit,
|
| /src/external/gpl3/gcc/dist/libgcc/config/msp430/ |
| mpy.c | 7 char bit; local 17 for (bit = 0; y && bit < sizeof (y) * 8; bit ++)
|
| msp430-mul.h | 32 char bit; local 34 for (bit=0; b && bit<sizeof(UINT_TYPE)*8; bit++)
|
| /src/external/gpl3/gcc/dist/libgcc/config/rl78/ |
| rl78-mul.h | 32 char bit; local 34 for (bit=0; b && bit<sizeof(UINT_TYPE)*8; bit++)
|
| /src/external/gpl3/gcc.old/dist/libgcc/config/msp430/ |
| mpy.c | 7 char bit; local 17 for (bit = 0; y && bit < sizeof (y) * 8; bit ++)
|
| msp430-mul.h | 32 char bit; local 34 for (bit=0; b && bit<sizeof(UINT_TYPE)*8; bit++)
|
| /src/external/gpl3/gcc.old/dist/libgcc/config/rl78/ |
| rl78-mul.h | 32 char bit; local 34 for (bit=0; b && bit<sizeof(UINT_TYPE)*8; bit++)
|