Home
last modified time | relevance | path

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

/third_party/mesa3d/src/amd/compiler/
Daco_insert_NOPs.cpp288 unsigned start_mod = start % BITSET_WORDBITS; in set_bitset_range() local
289 if (start_mod + size <= BITSET_WORDBITS) { in set_bitset_range()
292 unsigned first_size = BITSET_WORDBITS - start_mod; in set_bitset_range()
293 set_bitset_range(words, start, BITSET_WORDBITS - start_mod); in set_bitset_range()
302 unsigned start_mod = start % BITSET_WORDBITS; in test_bitset_range() local
303 if (start_mod + size <= BITSET_WORDBITS) { in test_bitset_range()
306 unsigned first_size = BITSET_WORDBITS - start_mod; in test_bitset_range()
307 return test_bitset_range(words, start, BITSET_WORDBITS - start_mod) || in test_bitset_range()
/third_party/mesa3d/src/util/
Dbitset.h212 const unsigned start_mod = start % BITSET_WORDBITS; in __bitset_set_range() local
214 if (start_mod + size <= BITSET_WORDBITS) { in __bitset_set_range()
217 const unsigned first_size = BITSET_WORDBITS - start_mod; in __bitset_set_range()