Searched refs:_BITS_PER_SET (Results 1 – 1 of 1) sorted by relevance
21 #define _BITS_PER_SET (sizeof(long long) * 8) macro22 #define _BIT_SET_MASK (_BITS_PER_SET - 1)24 #define _NUM_SETS(b) (((b) + _BIT_SET_MASK) / _BITS_PER_SET)25 #define _WHICH_SET(b) ((b) / _BITS_PER_SET)26 #define _WHICH_BIT(b) ((b) & (_BITS_PER_SET - 1))