Home
last modified time | relevance | path

Searched refs:BITSET_BITWORD (Results 1 – 1 of 1) sorted by relevance

/hardware/google/gfxstream/guest/mesa/src/util/
Dbitset.h57 #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))
211 (BITSET_BITWORD(b) == BITSET_BITWORD(e) ? \
212 (((x)[BITSET_BITWORD(b)] & BITSET_RANGE(b, e)) != 0) : \
215 (BITSET_BITWORD(b) == BITSET_BITWORD(e) ? \
216 ((x)[BITSET_BITWORD(b)] |= BITSET_RANGE(b, e)) : \
219 (BITSET_BITWORD(b) == BITSET_BITWORD(e) ? \
220 ((x)[BITSET_BITWORD(b)] &= ~BITSET_RANGE(b, e)) : \
[all …]