Lines Matching refs:BITSET_WORD_BITS
45 #define VBITSET_N_WORDS(N) (((N) + BITSET_WORD_BITS - 1) / BITSET_WORD_BITS)
121 bitset_windex windex = bitno / BITSET_WORD_BITS;
130 (bitset_word) 1 << (bitno % BITSET_WORD_BITS);
189 windex = bitno / BITSET_WORD_BITS;
190 bitcnt = bitno % BITSET_WORD_BITS;
191 bitoff = windex * BITSET_WORD_BITS;
197 word = srcp[windex] << (BITSET_WORD_BITS - 1 - bitcnt);
211 bitoff -= BITSET_WORD_BITS;
212 bitcnt = BITSET_WORD_BITS - 1;
253 bitoff = windex * BITSET_WORD_BITS;
260 windex = bitno / BITSET_WORD_BITS;
261 bitno = bitno % BITSET_WORD_BITS;
270 bitoff = windex * BITSET_WORD_BITS;
287 bitoff = windex * BITSET_WORD_BITS;
290 for (; windex < size; windex++, bitoff += BITSET_WORD_BITS)
295 if ((count + BITSET_WORD_BITS) < num)
334 last_bit = BITSET_SIZE_ (dst) % BITSET_WORD_BITS;