HomeSort by relevance Sort by last modified time
    Searched refs:bset (Results 1 - 11 of 11) sorted by null

  /external/bison/lib/
bitset_stats.c 53 #define BITSET_STATS_FREES_INC(BSET) \
54 bitset_stats_info->types[BITSET_TYPE_ (BSET)].frees++
55 #define BITSET_STATS_SETS_INC(BSET) \
56 bitset_stats_info->types[BITSET_TYPE_ (BSET)].sets++
57 #define BITSET_STATS_CACHE_SETS_INC(BSET) \
58 bitset_stats_info->types[BITSET_TYPE_ (BSET)].cache_sets++
59 #define BITSET_STATS_RESETS_INC(BSET) \
60 bitset_stats_info->types[BITSET_TYPE_ (BSET)].resets++
61 #define BITSET_STATS_CACHE_RESETS_INC(BSET) \
62 bitset_stats_info->types[BITSET_TYPE_ (BSET)].cache_resets+
315 bitset bset = dst->s.bset; local
334 bitset bset = dst->s.bset; local
361 bitset bset = src->s.bset; local
    [all...]
bitset.c 72 /* Initialise bitset BSET of TYPE for N_BITS. */
74 bitset_init (bitset bset, bitset_bindex n_bits, enum bitset_type type)
77 return bitset_stats_init (bset, n_bits, type);
85 return abitset_init (bset, n_bits);
88 return lbitset_init (bset, n_bits);
91 return ebitset_init (bset, n_bits);
94 return vbitset_init (bset, n_bits);
137 bitset bset; local
141 bset = xcalloc (1, bytes);
147 return bitset_init (bset, n_bits, type)
157 bitset bset; local
    [all...]
bitsetv-print.c 30 bitsetv_matrix_dump (FILE * out, const char *title, bitsetv bset)
33 bitset_bindex hsize = bitset_size (bset[0]);
55 for (i = 0; bset[i]; ++i)
59 fputs (bitset_test (bset[i], j) ? "1" : " ", out);
lbitset.c 164 /* Unlink element ELT from bitset BSET. */
166 lbitset_elt_unlink (bitset bset, lbitset_elt *elt)
177 if (LBITSET_HEAD (bset) == elt)
178 LBITSET_HEAD (bset) = next;
179 if (LBITSET_TAIL (bset) == elt)
180 LBITSET_TAIL (bset) = prev;
185 if (LBITSET_CURRENT (bset) == elt)
189 bset->b.cdata = next->words;
190 bset->b.cindex = next->index;
194 bset->b.cdata = prev->words
    [all...]
bitset.h 77 bitset bset; member in struct:bitset_union::bitset_stats_struct
134 /* Set bit BITNO in bitset BSET. */
136 bitset_set (bitset bset, bitset_bindex bitno)
139 bitset_windex offset = windex - bset->b.cindex;
141 if (offset < bset->b.csize)
142 bset->b.cdata[offset] |= ((bitset_word) 1 << (bitno % BITSET_WORD_BITS));
144 BITSET_SET_ (bset, bitno);
148 /* Reset bit BITNO in bitset BSET. */
150 bitset_reset (bitset bset, bitset_bindex bitno)
153 bitset_windex offset = windex - bset->b.cindex
    [all...]
ebitset.c 90 #define EBITSET_ELTS(BSET) ((BSET)->e.elts)
91 #define EBITSET_SIZE(BSET) EBITSET_N_ELTS (BITSET_NBITS_ (BSET))
92 #define EBITSET_ASIZE(BSET) ((BSET)->e.size)
97 /* Disable bitset cache and mark BSET as being zero. */
98 #define EBITSET_ZERO_SET(BSET) ((BSET)->b.cindex = BITSET_WINDEX_MAX, \
99 (BSET)->b.cdata = 0
    [all...]
abitset.c 45 /* Find list of up to NUM bits set in BSET starting from and including
137 /* Find list of up to NUM bits set in BSET in reverse order, starting
198 /* Find list of up to NUM bits set in BSET starting from and including
809 abitset_init (bitset bset, bitset_bindex n_bits)
814 BITSET_NBITS_ (bset) = n_bits;
820 bset->b.vtable = &abitset_small_vtable;
822 bset->b.vtable = &abitset_vtable;
824 bset->b.cindex = 0;
825 bset->b.csize = size;
826 bset->b.cdata = ABITSET_WORDS (bset)
    [all...]
vbitset.c 157 /* Find list of up to NUM bits set in BSET in reverse order, starting
221 /* Find list of up to NUM bits set in BSET starting from and including
1129 vbitset_init (bset, n_bits)
1130 bitset bset;
1133 bset->b.vtable = &vbitset_vtable;
1135 bset->b.cindex = 0;
1137 VBITSET_SIZE (bset) = 0;
1138 vbitset_resize (bset, n_bits);
1139 return bset;
  /external/qemu/distrib/sdl-1.2.15/src/video/ataricommon/
SDL_ikbdinterrupt.S 82 bset d0,0xfffffa09:w | IERB
83 bset d0,0xfffffa15:w | IMRB
87 bset #6,0xfffffa09:w | IERB
88 bset #6,0xfffffa15:w | IMRB
135 bset #6,a0@(0x09)
141 bset #6,a0@(0x15)
  /external/v8/test/mjsunit/regress/
regress-1015.js 50 var op = { __proto__: { set bar(v) { assertUnreachable("bset"); } },
62 var op = { __proto__: { set bar(v) { assertUnreachable("bset"); } },
  /external/icu4c/i18n/
decNumber.c 5645 decContext aset, bset; \/* working contexts *\/ local
    [all...]

Completed in 814 milliseconds