41 #define SETBIT(val, bit) val |= (bit)
52 #define CLRBIT(val, bit) val &= (~(bit))
59 #define BIT0 0x00000001
60 #define BIT1 0x00000002
61 #define BIT2 0x00000004
62 #define BIT3 0x00000008
63 #define BIT4 0x00000010
64 #define BIT5 0x00000020
65 #define BIT6 0x00000040
66 #define BIT7 0x00000080
67 #define BIT8 0x00000100
68 #define BIT9 0x00000200
71 #define BIT10 0x00000400
72 #define BIT11 0x00000800
73 #define BIT12 0x00001000
74 #define BIT13 0x00002000
75 #define BIT14 0x00004000
76 #define BIT15 0x00008000
79 #define BIT16 0x00010000
80 #define BIT17 0x00020000
81 #define BIT18 0x00040000
82 #define BIT19 0x00080000
83 #define BIT20 0x00100000
84 #define BIT21 0x00200000
85 #define BIT22 0x00400000
86 #define BIT23 0x00800000
87 #define BIT24 0x01000000
88 #define BIT25 0x02000000
89 #define BIT26 0x04000000
90 #define BIT27 0x08000000
91 #define BIT28 0x10000000
92 #define BIT29 0x20000000
93 #define BIT30 0x40000000
94 #define BIT31 0x80000000
98 #define ARCH_32_BIT (__INT_MAX__ == 2147483647)
155 #if defined(BITARITHM_HAS_CLZ)
156 return 8 *
sizeof(v) - __builtin_clz(v) - 1;
178 #if defined(BITARITHM_HAS_CLZ)
181 return __builtin_clz(x) - 8 * (
sizeof(unsigned) - 1);
184 while (!(x & 0x80)) {
204 extern const uint8_t bitarithm_MultiplyDeBruijnBitPosition[32];
207 #if defined(BITARITHM_LSB_BUILTIN)
209 return __builtin_ffs(v) - 1;
211 #elif defined(BITARITHM_LSB_LOOKUP)
218 return bitarithm_MultiplyDeBruijnBitPosition[((uint32_t)((v & -v) * 0x077CB531U)) >>
226 while ((v & 0x01) == 0) {
256 #if defined(BITARITHM_HAS_CLZ)
257 *index = 8 *
sizeof(state) - __builtin_clz(state) - 1;
258 return state & ~(1 << *index);
259 #elif defined(BITARITHM_LSB_LOOKUP)
265 uint32_t least_bit = state & -state;
266 *index = bitarithm_MultiplyDeBruijnBitPosition[(least_bit * 0x077CB531U) >> 27];
267 return state & ~least_bit;
269 while ((state & 1) == 0) {
uint8_t bitarithm_bits_set_u32(uint32_t v)
Returns the (uint32_t version) number of bits set in a value.
static unsigned bitarithm_msb(unsigned v)
Returns the number of the highest '1' bit in a value.
static unsigned bitarithm_lsb(unsigned v)
Returns the number of the lowest '1' bit in a value.
unsigned bitarithm_bits_set(unsigned v)
Returns the number of bits set in a value.
unsigned bitarith_msb_32bit_no_native_clz(unsigned v)
Returns the number of the highest '1' bit in a value.
static unsigned bitarithm_test_and_clear(unsigned state, uint8_t *index)
Used for iterating over the bits in state.
static uint8_t bitarithm_clzb(uint8_t x)
Returns the number of leading 0-bits in x, starting at the most significant bit position.