Lines Matching refs:bitset_t
193 /* Number of bitset_word_t values in a bitset_t. */
196 typedef bitset_word_t bitset_t[BITSET_WORDS];
697 bitset_t word_char;
737 /* Inline functions for bitset_t operation. */
740 bitset_set (bitset_t set, Idx i)
746 bitset_clear (bitset_t set, Idx i)
752 bitset_contain (const bitset_t set, Idx i)
758 bitset_empty (bitset_t set)
760 memset (set, '\0', sizeof (bitset_t));
764 bitset_set_all (bitset_t set)
773 bitset_copy (bitset_t dest, const bitset_t src)
775 memcpy (dest, src, sizeof (bitset_t));
779 bitset_not (bitset_t set)
791 bitset_merge (bitset_t dest, const bitset_t src)
799 bitset_mask (bitset_t dest, const bitset_t src)