Searched refs:bit (Results 1 - 25 of 2481) sorted by relevance

1234567891011>>

/netbsd-current/external/gpl3/gcc/dist/libiberty/
H A Dffs.c1 /* 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;
/netbsd-current/external/gpl3/binutils/dist/libiberty/
H A Dffs.c1 /* 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;
/netbsd-current/external/gpl3/gdb/dist/libiberty/
H A Dffs.c1 /* 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;
/netbsd-current/external/gpl3/gdb.old/dist/libiberty/
H A Dffs.c1 /* 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;
/netbsd-current/external/gpl3/binutils.old/dist/libiberty/
H A Dffs.c1 /* 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;
/netbsd-current/external/gpl3/gcc.old/dist/libiberty/
H A Dffs.c1 /* 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;
/netbsd-current/external/gpl3/gdb.old/dist/gas/testsuite/gas/s12z/
H A Dbit.s0 bit d2, #-892
2 bit d3, #-4302
3 bit d7, #123456
4 bit d5, #1234
5 bit d0, #123
6 bit d1, #34
7 bit d6, #-56789
8 bit d4, #8765
9 bit d0, [-223,y]
10 bit d
[all...]
/netbsd-current/external/mpl/dhcp/bind/dist/lib/dns/include/dns/
H A Dbit.h1 /* $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)))
/netbsd-current/external/mpl/bind/dist/lib/dns/include/dns/
H A Dbit.h1 /* $NetBSD: bit.h,v 1.7 2024/02/21 22:52:09 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)))
/netbsd-current/sys/arch/m68k/include/
H A Dasm_single.h31 * 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...]
/netbsd-current/external/gpl3/gdb.old/dist/gas/testsuite/gas/i386/
H A Dbmi-16bit.s1 # Check 16-bit BMI instructions
H A Dbmi2-16bit.s1 # Check 16-bit BMI2 instructions
H A Dlwp-16bit.s1 # Check 16-bit LWP instructions
H A Dtbm-16bit.s1 # Check 16-bit TBM instructions
H A Dx86-64-optimize-7a.s1 # Check 64bit instructions with optimized encoding
/netbsd-current/external/gpl3/gcc.old/dist/libgcc/config/lm32/
H A D_udivmodsi4.c32 USItype bit = 1; local
35 while (den < num && bit && !(den & (1L << 31)))
38 bit <<= 1;
40 while (bit)
45 res |= bit;
47 bit >>= 1;
/netbsd-current/external/gpl3/gcc.old/dist/libgcc/
H A Dudivmodsi4.c27 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;
H A Dudivmodhi4.c27 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;
/netbsd-current/external/gpl3/gcc/dist/libgcc/config/lm32/
H A D_udivmodsi4.c32 USItype bit = 1; local
35 while (den < num && bit && !(den & (1L << 31)))
38 bit <<= 1;
40 while (bit)
45 res |= bit;
47 bit >>= 1;
/netbsd-current/external/gpl3/gcc/dist/libgcc/
H A Dudivmodsi4.c27 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;
H A Dudivmodhi4.c27 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;
/netbsd-current/sys/external/gpl2/dts/dist/include/dt-bindings/mfd/
H A Dstm32f4-rcc.h36 #define STM32F4_AHB1_RESET(bit) (STM32F4_RCC_AHB1_##bit + (0x10 * 8))
37 #define STM32F4_AHB1_CLOCK(bit) (STM32F4_RCC_AHB1_##bit)
47 #define STM32F4_AHB2_RESET(bit) (STM32F4_RCC_AHB2_##bit + (0x14 * 8))
48 #define STM32F4_AHB2_CLOCK(bit) (STM32F4_RCC_AHB2_##bit + 0x20)
54 #define STM32F4_AHB3_RESET(bit) (STM32F4_RCC_AHB3_##bit
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gas/testsuite/gas/z80/
H A Dz80_doc.s53 bit 0,(hl)
54 bit 0,(ix+9)
55 bit 0,(iy+9)
56 bit 0,a
57 bit 0,b
58 bit 0,c
59 bit 0,d
60 bit 0,e
61 bit 0,h
62 bit
[all...]
/netbsd-current/sys/arch/arm/at91/
H A Dat91piovar.h51 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,
/netbsd-current/external/gpl3/gdb.old/dist/gas/testsuite/gas/m68hc11/
H A Dabi-m68hc11-16-32.d3 #name: Elf flags 68HC11 16-bit int, 32-bit double
7 private flags = 0:\[abi=16-bit int, 32-bit double, cpu=HC11\] \[memory=flat\]

Completed in 422 milliseconds

1234567891011>>