Home | History | Annotate | Download | only in lib

Lines Matching refs:bitset_word

61     bitset_word words[EBITSET_ELT_WORDS];	/* Bits that are set.  */
105 (EBITSET_CACHE_DISABLE (BSET), (BSET)->b.cdata = (bitset_word *)~0)
519 (bitset_word) 1 << (bitno % BITSET_WORD_BITS);
533 ~((bitset_word) 1 << (bitno % BITSET_WORD_BITS));
609 bitset_word *srcp;
618 bitset_word word;
664 bitset_word word;
685 bitset_word *srcp = EBITSET_WORDS (elt);
721 bitset_word *srcp;
859 bitset_word *srcp = EBITSET_WORDS (elt);
864 srcp[windex - woffset] &= ((bitset_word) 1 << last_bit) - 1;
1038 bitset_word *srcp1;
1039 bitset_word *srcp2;
1040 bitset_word *dstp;
1098 bitset_word tmp = *srcp1++ | *srcp2++;
1111 bitset_word tmp = *srcp1++ & *srcp2++;
1124 bitset_word tmp = *srcp1++ ^ *srcp2++;
1137 bitset_word tmp = *srcp1++ & ~(*srcp2++);