Searched refs:bitset_word (Results 1 - 7 of 7) sorted by relevance

/external/bison/lib/
H A Dabitset.c55 bitset_word word;
151 bitset_word *srcp = ABITSET_WORDS (src);
172 bitset_word word;
210 bitset_word *srcp = ABITSET_WORDS (src);
211 bitset_word word;
310 ((bitset_word) 1 << last_bit) - 1;
317 bitset_word *dstp = ABITSET_WORDS (dst);
320 bytes = sizeof (bitset_word) * dst->b.csize;
330 bitset_word *dstp = ABITSET_WORDS (dst);
333 bytes = sizeof (bitset_word) * ds
[all...]
H A Dvbitset.c86 = realloc (VBITSET_WORDS (src), size * sizeof (bitset_word));
91 (newsize - oldsize) * sizeof (bitset_word));
101 = realloc (VBITSET_WORDS (src), newsize * sizeof (bitset_word));
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 *dst
[all...]
H A Dlbitset.c51 typedef bitset_word lbitset_word;
66 bitset_word words[LBITSET_ELT_WORDS]; /* Bits that are set. */
525 (bitset_word) 1 << (bitno % BITSET_WORD_BITS);
539 ~((bitset_word) 1 << (bitno % BITSET_WORD_BITS));
579 bitset_word word;
623 bitset_word *srcp = elt->words;
672 bitset_word word;
710 bitset_word *srcp = elt->words;
750 bitset_word *srcp = elt->words;
896 bitset_word *src
[all...]
H A Debitset.c61 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 *src
[all...]
H A Dbbitset.h53 typedef unsigned long int bitset_word; typedef
54 #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. */
H A Dbitset.h57 bitset_word words[1]; /* The array of bits. */
142 bset->b.cdata[offset] |= ((bitset_word) 1 << (bitno % BITSET_WORD_BITS));
156 bset->b.cdata[offset] &= ~((bitset_word) 1 << (bitno % BITSET_WORD_BITS));
H A Dbitset_stats.c323 bset->b.cdata[offset] |= (bitset_word) 1 << (bitno % BITSET_WORD_BITS);
343 ~((bitset_word) 1 << (bitno % BITSET_WORD_BITS));

Completed in 2196 milliseconds