Searched refs:BITSET_BIT (Results 1 – 3 of 3) sorted by relevance
57 #define BITSET_BIT(b) (1u << ((b) % BITSET_WORDBITS)) macro61 #define BITSET_TEST(x, b) (((x)[BITSET_BITWORD(b)] & BITSET_BIT(b)) != 0)62 #define BITSET_SET(x, b) ((x)[BITSET_BITWORD(b)] |= BITSET_BIT(b))63 #define BITSET_CLEAR(x, b) ((x)[BITSET_BITWORD(b)] &= ~BITSET_BIT(b))65 #define BITSET_MASK(b) (((b) % BITSET_WORDBITS == 0) ? ~0 : BITSET_BIT(b) - 1)66 #define BITSET_RANGE(b, e) ((BITSET_MASK((e) + 1)) & ~(BITSET_BIT(b) - 1))167 BITSET_WORD tmp = set[word] & ~(BITSET_BIT(*end) - 1); in __bitset_next_range()184 tmp = set[word] | (BITSET_BIT(*start + 1) - 1); in __bitset_next_range()
729 g->tmp.reg_assigned[i] |= BITSET_BIT(j); in ra_simplify()757 if (pq & BITSET_BIT(j)) { in ra_simplify()775 if (skip & BITSET_BIT(j)) in ra_simplify()
46 #define I915_ENGINE_CLASS_TO_MASK(x) BITSET_BIT(x)