HomeSort by relevance Sort by last modified time
    Searched full:bset (Results 1 - 25 of 28) sorted by null

1 2

  /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...]
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...]
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...]
lbitset.c 163 /* Unlink element ELT from bitset BSET. */
165 lbitset_elt_unlink (bitset bset, lbitset_elt *elt)
176 if (LBITSET_HEAD (bset) == elt)
177 LBITSET_HEAD (bset) = next;
178 if (LBITSET_TAIL (bset) == elt)
179 LBITSET_TAIL (bset) = prev;
184 if (LBITSET_CURRENT (bset) == elt)
188 bset->b.cdata = next->words;
189 bset->b.cindex = next->index;
193 bset->b.cdata = prev->words
    [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);
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...]
bbitset.h 267 /* Find list of up to NUM bits set in BSET starting from and including
270 #define BITSET_LIST_(BSET, LIST, NUM, NEXT) \
271 (BSET)->b.vtable->list (BSET, LIST, NUM, NEXT)
273 /* Find reverse list of up to NUM bits set in BSET starting from and
276 #define BITSET_LIST_REVERSE_(BSET, LIST, NUM, NEXT) \
277 (BSET)->b.vtable->list_reverse (BSET, LIST, NUM, NEXT)
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/webkit/Source/JavaScriptCore/wtf/
AVLTree.h 40 // Here is the reference class for BSet.
42 // class BSet
54 // BSet();
127 template <class Abstractor, unsigned maxDepth = 32, class BSet = AVLTreeDefaultBSet<maxDepth> >
329 BSet branch;
354 BSet branch;
358 BSet rem;
589 template <class Abstractor, unsigned maxDepth, class BSet>
590 inline typename AVLTree<Abstractor, maxDepth, BSet>::handle
591 AVLTree<Abstractor, maxDepth, BSet>::insert(handle h
    [all...]
  /external/clang/lib/Analysis/
PostOrderCFGView.cpp 22 CFGBlockSet BSet(cfg);
24 for (po_iterator I = po_iterator::begin(cfg, BSet),
25 E = po_iterator::end(cfg, BSet); I != E; ++I) {
  /external/qemu/distrib/sdl-1.2.12/src/video/ataricommon/
SDL_ikbdinterrupt.S 63 bset #6,0xfffffa09:w | IERB
64 bset #6,0xfffffa15:w | IMRB
97 bset #6,a0@(0x09)
103 bset #6,a0@(0x15)
  /external/icu4c/i18n/
uspoof_wsconf.cpp 299 BuilderScriptSet *bSet = static_cast<BuilderScriptSet *>(scriptSets->elementAt(i));
300 if (bSet->rindex != (uint32_t)i) {
301 utrie2_set32(bSet->trie, bSet->codePoint, bSet->rindex, &status);
358 BuilderScriptSet *bSet = static_cast<BuilderScriptSet *>(scriptSets->elementAt(i));
359 if (bSet->rindex < rindex) {
363 U_ASSERT(rindex == bSet->rindex);
364 rtScriptSets[rindex] = *bSet->sset; // Assignment of a ScriptSet just copies the bits.
decNumber.c 5626 decContext aset, bset; \/* working contexts *\/ local
    [all...]
  /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/libvpx/examples/includes/geshi/geshi/
m68k.php 58 'brset','bset','bsr','cbeq','clc','cli','clr','cmp','com','cphx',
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3bitset.c 234 /// Creates a new bitset with at least one 64 bit bset of bits, but as
237 /// \param[in] bset
245 /// - pANTLR3_BITSET = antlrBitsetLoad(bset, bset11, ..., -1);
  /prebuilt/darwin-x86/toolchain/arm-eabi-4.4.3/info/
as.info     [all...]
ld.info     [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/info/
as.info     [all...]
ld.info     [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/share/info/
ld.info     [all...]
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/share/info/
ld.info     [all...]
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/share/info/
ld.info     [all...]
  /external/bison/
ChangeLog     [all...]

Completed in 1066 milliseconds

1 2