Home
last modified time | relevance | path

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

/third_party/mesa3d/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))
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)) : \
[all …]
/third_party/mesa3d/src/compiler/glsl/
Dgl_nir_link_varyings.c523 const unsigned start_word = BITSET_BITWORD(first_component); in xfb_decl_store()
524 const unsigned end_word = BITSET_BITWORD(last_component); in xfb_decl_store()