Lines Matching refs:words
156 const unsigned int words = amount / BITSET_WORDBITS; in __bitset_shr() local
161 if (words) { in __bitset_shr()
164 for (i = 0; i < n - words; i++) in __bitset_shr()
165 x[i] = x[i + words]; in __bitset_shr()
180 const int words = amount / BITSET_WORDBITS; in __bitset_shl() local
185 if (words) { in __bitset_shl()
188 for (i = n - 1; i >= words; i--) { in __bitset_shl()
189 x[i] = x[i - words]; in __bitset_shl()
481 if (words[i]) \
496 return BITSET_EQUAL(b.words, c.words); \
523 c.words[i] = ~b.words[i]; \
531 words[i] |= b.words[i]; \
547 words[i] &= b.words[i]; \
562 return BITSET_TEST(words, i); \
568 BITSET_SET(words, i); \
575 BITSET_CLEAR(words, i); \
579 BITSET_WORD words[BITSET_WORDS(N)]; \