Home
last modified time | relevance | path

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

/external/mesa3d/src/mesa/main/
Dbitset.h118 #define BITSET64_BITWORD(b) ((b) / BITSET64_WORDBITS) macro
123 #define BITSET64_TEST(x, b) ((x)[BITSET64_BITWORD(b)] & BITSET64_BIT(b))
124 #define BITSET64_SET(x, b) ((x)[BITSET64_BITWORD(b)] |= BITSET64_BIT(b))
125 #define BITSET64_CLEAR(x, b) ((x)[BITSET64_BITWORD(b)] &= ~BITSET64_BIT(b))
133 (BITSET64_BITWORD(b) == BITSET64_BITWORD(e) ? \
134 ((x)[BITSET64_BITWORD(b)] & BITSET64_RANGE(b, e)) : \
137 (BITSET64_BITWORD(b) == BITSET64_BITWORD(e) ? \
142 (BITSET64_BITWORD(b) == BITSET64_BITWORD(e) ? \
143 ((x)[BITSET64_BITWORD(b)] |= BITSET64_RANGE(b, e)) : \
146 (BITSET64_BITWORD(b) == BITSET64_BITWORD(e) ? \
[all …]