Lines Matching refs:BITSET_BITWORD
57 #define BITSET_BITWORD(b) ((b) / BITSET_WORDBITS) macro
62 #define BITSET_TEST(x, b) (((x)[BITSET_BITWORD(b)] & BITSET_BIT(b)) != 0)
63 #define BITSET_SET(x, b) ((x)[BITSET_BITWORD(b)] |= BITSET_BIT(b))
64 #define BITSET_CLEAR(x, b) ((x)[BITSET_BITWORD(b)] &= ~BITSET_BIT(b))
197 (BITSET_BITWORD(b) == BITSET_BITWORD(e) ? \
198 (((x)[BITSET_BITWORD(b)] & BITSET_RANGE(b, e)) != 0) : \
201 (BITSET_BITWORD(b) == BITSET_BITWORD(e) ? \
202 ((x)[BITSET_BITWORD(b)] |= BITSET_RANGE(b, e)) : \
205 (BITSET_BITWORD(b) == BITSET_BITWORD(e) ? \
206 ((x)[BITSET_BITWORD(b)] &= ~BITSET_RANGE(b, e)) : \
342 word = BITSET_BITWORD(i); in __bitset_next_set()
381 unsigned word = BITSET_BITWORD(*end); in __bitset_next_range()
402 word = BITSET_BITWORD(*start + 1); in __bitset_next_range()