Lines Matching refs:bitset_word
151 typedef unsigned long int bitset_word; typedef
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;
793 set[i / BITSET_WORD_BITS] |= (bitset_word) 1 << i % BITSET_WORD_BITS; in bitset_set()
799 set[i / BITSET_WORD_BITS] &= ~ ((bitset_word) 1 << i % BITSET_WORD_BITS); in bitset_clear()
817 memset (set, -1, sizeof (bitset_word) * (SBC_MAX / BITSET_WORD_BITS)); in bitset_set_all()
820 ((bitset_word) 1 << SBC_MAX % BITSET_WORD_BITS) - 1; in bitset_set_all()
837 ((((bitset_word) 1 << SBC_MAX % BITSET_WORD_BITS) - 1) in bitset_not()