Home | History | Annotate | Download | only in lib

Lines Matching defs:bitset_word

151 typedef unsigned long int bitset_word;
154 contexts, and must be consistent with bitset_word. */
182 # error "Add case for new bitset_word size"
188 typedef bitset_word bitset[BITSET_WORDS];
189 typedef bitset_word *re_bitset_ptr_t;
190 typedef const bitset_word *re_const_bitset_ptr_t;
737 bitset_word used_bkref_map;
738 bitset_word completed_bkref_map;
794 set[i / BITSET_WORD_BITS] |= (bitset_word) 1 << i % BITSET_WORD_BITS;
800 set[i / BITSET_WORD_BITS] &= ~ ((bitset_word) 1 << i % BITSET_WORD_BITS);
818 memset (set, -1, sizeof (bitset_word) * (SBC_MAX / BITSET_WORD_BITS));
821 ((bitset_word) 1 << SBC_MAX % BITSET_WORD_BITS) - 1;
838 ((((bitset_word) 1 << SBC_MAX % BITSET_WORD_BITS) - 1)