Searched refs:BITSET64_WORDBITS (Results 1 – 1 of 1) sorted by relevance
/external/mesa3d/src/mesa/main/ |
D | bitset.h | 104 #define BITSET64_WORDBITS (sizeof (BITSET64_WORD) * 8) macro 118 #define BITSET64_BITWORD(b) ((b) / BITSET64_WORDBITS) 119 #define BITSET64_BIT(b) (1 << ((b) % BITSET64_WORDBITS)) 127 #define BITSET64_MASK(b) ((b) == BITSET64_WORDBITS ? ~0 : BITSET64_BIT(b) - 1) 139 (BITSET64_TEST_SUBRANGE(x, b, BITSET64_WORDBITS - 1) | \ 140 BITSET64_TEST_SUBRANGE(x, BITSET64_WORDBITS, e))) 148 (BITSET64_SET_SUBRANGE(x, b, BITSET64_WORDBITS - 1) | \ 149 BITSET64_SET_SUBRANGE(x, BITSET64_WORDBITS, e))) 157 (BITSET64_CLEAR_SUBRANGE(x, b, BITSET64_WORDBITS - 1) | \ 158 BITSET64_CLEAR_SUBRANGE(x, BITSET64_WORDBITS, e)))
|