Searched refs:bitset_word (Results 1 – 8 of 8) sorted by relevance
55 bitset_word word; in abitset_small_list()151 bitset_word *srcp = ABITSET_WORDS (src); in abitset_list_reverse()172 bitset_word word; in abitset_list_reverse()210 bitset_word *srcp = ABITSET_WORDS (src); in abitset_list()211 bitset_word word; in abitset_list()310 ((bitset_word) 1 << last_bit) - 1; in abitset_unused_clear()317 bitset_word *dstp = ABITSET_WORDS (dst); in abitset_ones()320 bytes = sizeof (bitset_word) * dst->b.csize; in abitset_ones()330 bitset_word *dstp = ABITSET_WORDS (dst); in abitset_zero()333 bytes = sizeof (bitset_word) * dst->b.csize; in abitset_zero()[all …]
86 = realloc (VBITSET_WORDS (src), size * sizeof (bitset_word)); in vbitset_resize()91 (newsize - oldsize) * sizeof (bitset_word)); in vbitset_resize()101 = realloc (VBITSET_WORDS (src), newsize * sizeof (bitset_word)); in vbitset_resize()130 (bitset_word) 1 << (bitno % BITSET_WORD_BITS);174 bitset_word *srcp = VBITSET_WORDS (src);195 bitset_word word;236 bitset_word *srcp = VBITSET_WORDS (src);237 bitset_word word;337 ((bitset_word) 1 << last_bit) - 1;344 bitset_word *dstp = VBITSET_WORDS (dst); in vbitset_ones()[all …]
51 typedef bitset_word lbitset_word;66 bitset_word words[LBITSET_ELT_WORDS]; /* Bits that are set. */525 (bitset_word) 1 << (bitno % BITSET_WORD_BITS); in lbitset_set()539 ~((bitset_word) 1 << (bitno % BITSET_WORD_BITS)); in lbitset_reset()579 bitset_word word; in lbitset_list_reverse()623 bitset_word *srcp = elt->words; in lbitset_list_reverse()672 bitset_word word; in lbitset_list()710 bitset_word *srcp = elt->words; in lbitset_list()750 bitset_word *srcp = elt->words; in lbitset_list()896 bitset_word *srcp; in lbitset_unused_clear()[all …]
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); in ebitset_set()533 ~((bitset_word) 1 << (bitno % BITSET_WORD_BITS)); in ebitset_reset()609 bitset_word *srcp; in ebitset_list_reverse()618 bitset_word word; in ebitset_list_reverse()664 bitset_word word; in ebitset_list()685 bitset_word *srcp = EBITSET_WORDS (elt); in ebitset_list()721 bitset_word *srcp; in ebitset_list()859 bitset_word *srcp = EBITSET_WORDS (elt); in ebitset_unused_clear()[all …]
53 typedef unsigned long int bitset_word; typedef54 #define BITSET_WORD_BITS ((unsigned int) (CHAR_BIT * sizeof (bitset_word)))76 #define BITSET_MSB ((bitset_word) 1 << (BITSET_WORD_BITS - 1))92 bitset_word *cdata; /* Cache data pointer. */
57 bitset_word words[1]; /* The array of bits. */142 bset->b.cdata[offset] |= ((bitset_word) 1 << (bitno % BITSET_WORD_BITS)); in bitset_set()156 bset->b.cdata[offset] &= ~((bitset_word) 1 << (bitno % BITSET_WORD_BITS)); in bitset_reset()
323 bset->b.cdata[offset] |= (bitset_word) 1 << (bitno % BITSET_WORD_BITS); in bitset_stats_set()343 ~((bitset_word) 1 << (bitno % BITSET_WORD_BITS)); in bitset_stats_reset()
12388 * lib/bbitset.h (bitset_word, BITSET_WORD_BITS): Likewise.15822 * lib/bitset.h (bitset_reset): Do not assume that bitset_word is15826 * lib/lbitset.c (debug_lbitset): Do not assume that bitset_word is15928 sizeof (bitset_word) == sizeof (bitset_windex). All uses changed16106 bitset_word is the same width as int.