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

  /external/bison/lib/
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...]
bitset.h 76 bitset bset; member in struct:bitset_union::bitset_stats_struct
133 /* Set bit BITNO in bitset BSET. */
135 bitset_set (bitset bset, bitset_bindex bitno)
138 bitset_windex offset = windex - bset->b.cindex;
140 if (offset < bset->b.csize)
141 bset->b.cdata[offset] |= ((bitset_word) 1 << (bitno % BITSET_WORD_BITS));
143 BITSET_SET_ (bset, bitno);
147 /* Reset bit BITNO in bitset BSET. */
149 bitset_reset (bitset bset, bitset_bindex bitno)
152 bitset_windex offset = windex - bset->b.cindex
    [all...]
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...]
  /external/icu4c/i18n/
decNumber.c 5626 decContext aset, bset; \/* working contexts *\/ local
    [all...]

Completed in 175 milliseconds