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

1 2 3 4 5 6 7 8 91011>>

  /external/antlr/antlr-3.4/runtime/ActionScript/project/test/org/antlr/runtime/test/
TestBitSet.as 4 import org.antlr.runtime.BitSet;
10 var bitSet:BitSet = new BitSet();
12 assertEquals(0, bitSet.numBits);
13 assertEquals(0, bitSet.toPackedArray().length);
14 assertEquals(0, bitSet.size);
15 assertTrue(bitSet.isNil);
16 assertEquals("{}", bitSet.toString());
18 bitSet = BitSet.of(0, 1, 2)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
bitset.h 8 /* Bitset interface */
12 typedef BYTE *bitset; typedef
14 bitset newbitset(int nbits);
15 void delbitset(bitset bs);
17 int addbit(bitset bs, int ibit); /* Returns 0 if already set */
18 int samebitset(bitset bs1, bitset bs2, int nbits);
19 void mergebitset(bitset bs1, bitset bs2, int nbits);
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
bitset.h 8 /* Bitset interface */
12 typedef BYTE *bitset; typedef
14 bitset newbitset(int nbits);
15 void delbitset(bitset bs);
17 int addbit(bitset bs, int ibit); /* Returns 0 if already set */
18 int samebitset(bitset bs1, bitset bs2, int nbits);
19 void mergebitset(bitset bs1, bitset bs2, int nbits);
  /external/bison/lib/
bbitset.h 1 /* Base bitset stuff.
32 Memory for bit array and bitset structure allocated
41 BITSET_STATS: Wrapper bitset for internal use only. Used for gathering
95 that the bitset is known to be zero, that a bit has been set
102 typedef union bitset_union *bitset; typedef in typeref:union:bitset_union
105 /* Private accessor macros to bitset structure. */
116 void (*set) (bitset, bitset_bindex);
117 void (*reset) (bitset, bitset_bindex);
118 bool (*toggle) (bitset, bitset_bindex);
119 bool (*test) (bitset, bitset_bindex)
    [all...]
bitset.c 22 #include "bitset.h"
36 /* Return number of bytes required to create a N_BIT bitset
37 of TYPE. The bitset may grow to require more bytes than this. */
72 /* Initialise bitset BSET of TYPE for N_BITS. */
73 bitset
74 bitset_init (bitset bset, bitset_bindex n_bits, enum bitset_type type)
99 /* Select a bitset type for a set of N_BITS and with attribute hints
111 /* Choose the type of bitset. Note that sometimes we will be asked
112 for a zero length fixed size bitset. */
132 /* Create a bitset of N_BITS of type TYPE. *
    [all...]
bitset_stats.c 0 /* Bitset statistics.
20 /* This file is a wrapper bitset implementation for the other bitset
21 implementations. It provides bitset compatibility checking and
22 statistics gathering without having to instrument the bitset
23 implementations. When statistics gathering is enabled, the bitset
44 #define BITSET_STATS_FILE "bitset.dat"
168 /* Print bitset statistics to FILE. */
203 /* Print all bitset statistics to FILE. */
212 fprintf (file, _("Bitset statistics:\n\n"))
    [all...]
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3bitset.c 43 static void antlr3BitsetORInPlace (pANTLR3_BITSET bitset, pANTLR3_BITSET bitset2);
44 static ANTLR3_UINT32 antlr3BitsetSize (pANTLR3_BITSET bitset);
45 static void antlr3BitsetAdd (pANTLR3_BITSET bitset, ANTLR3_INT32 bit);
47 static ANTLR3_BOOLEAN antlr3BitsetMember (pANTLR3_BITSET bitset, ANTLR3_UINT32 bit);
48 static ANTLR3_UINT32 antlr3BitsetNumBits (pANTLR3_BITSET bitset);
49 static void antlr3BitsetRemove (pANTLR3_BITSET bitset, ANTLR3_UINT32 bit);
50 static ANTLR3_BOOLEAN antlr3BitsetIsNil (pANTLR3_BITSET bitset);
51 static pANTLR3_INT32 antlr3BitsetToIntList (pANTLR3_BITSET bitset);
55 static void growToInclude (pANTLR3_BITSET bitset, ANTLR3_INT32 bit);
56 static void grow (pANTLR3_BITSET bitset, ANTLR3_INT32 newSize)
78 pANTLR3_BITSET bitset; local
143 pANTLR3_BITSET bitset; local
186 pANTLR3_BITSET bitset; local
256 pANTLR3_BITSET bitset; local
319 pANTLR3_BITSET bitset; local
356 pANTLR3_BITSET bitset; local
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/test/runtime/sets/
ANTLRBitSetTest.m 19 ANTLRBitSet *bitSet = [ANTLRBitSet newANTLRBitSetWithBits:bitData Count:2];
20 CFIndex actual = (CFIndex)[bitSet numBits];
24 [bitSet release];
42 ANTLRBitSet *bitSet = [ANTLRBitSet newANTLRBitSetWithArray:bits];
43 CFIndex actual = (CFIndex)[bitSet numBits];
46 [bitSet release];
52 ANTLRBitSet *bitSet = [ANTLRBitSet newANTLRBitSet];
53 [bitSet add:1];
54 [bitSet add:2];
55 [bitSet add:3]
    [all...]
  /external/antlr/antlr-3.4/runtime/Perl5/
port.yml 3 runtime/Java/src/org/antlr/runtime/BitSet.java:
  /external/chromium_org/third_party/icu/source/test/perf/usetperf/
bitset.h 14 * A simple, limited clone of the java.util.BitSet.
16 class BitSet {
25 BitSet();
26 ~BitSet();
bitset.cpp 11 #include "bitset.h"
20 BitSet::BitSet() {
26 BitSet::~BitSet() {
30 UBool BitSet::get(int32_t bitIndex) const {
37 void BitSet::set(int32_t bitIndex) {
46 void BitSet::clearAll() {
50 void BitSet::ensureCapacity(uint32_t minLen) {
  /external/icu4c/test/perf/usetperf/
bitset.h 14 * A simple, limited clone of the java.util.BitSet.
16 class BitSet {
25 BitSet();
26 ~BitSet();
bitset.cpp 11 #include "bitset.h"
20 BitSet::BitSet() {
26 BitSet::~BitSet() {
30 UBool BitSet::get(int32_t bitIndex) const {
37 void BitSet::set(int32_t bitIndex) {
46 void BitSet::clearAll() {
50 void BitSet::ensureCapacity(uint32_t minLen) {
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/debug/
bitset 1 // Debugging bitset implementation -*- C++ -*-
26 /** @file debug/bitset
33 #include <bitset>
42 class bitset
43 : public _GLIBCXX_STD_D::bitset<_Nb>,
46 typedef _GLIBCXX_STD_D::bitset<_Nb> _Base;
56 friend class bitset;
59 reference(const _Base_ref& __base, bitset* __seq)
120 bitset() : _Base() { }
122 bitset(unsigned long __val) : _Base(__val) {
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/debug/
bitset 1 // Debugging bitset implementation -*- C++ -*-
26 /** @file debug/bitset
33 #include <bitset>
42 class bitset
43 : public _GLIBCXX_STD_D::bitset<_Nb>,
46 typedef _GLIBCXX_STD_D::bitset<_Nb> _Base;
56 friend class bitset;
59 reference(const _Base_ref& __base, bitset* __seq)
120 bitset() : _Base() { }
122 bitset(unsigned long __val) : _Base(__val) {
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/debug/
bitset 1 // Debugging bitset implementation -*- C++ -*-
26 /** @file debug/bitset
33 #include <bitset>
42 class bitset
43 : public _GLIBCXX_STD_D::bitset<_Nb>,
46 typedef _GLIBCXX_STD_D::bitset<_Nb> _Base;
56 friend class bitset;
59 reference(const _Base_ref& __base, bitset* __seq)
120 bitset() : _Base() { }
122 bitset(unsigned long __val) : _Base(__val) {
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/debug/
bitset 1 // Debugging bitset implementation -*- C++ -*-
26 /** @file debug/bitset
33 #include <bitset>
42 class bitset
43 : public _GLIBCXX_STD_D::bitset<_Nb>,
46 typedef _GLIBCXX_STD_D::bitset<_Nb> _Base;
56 friend class bitset;
59 reference(const _Base_ref& __base, bitset* __seq)
120 bitset() : _Base() { }
122 bitset(unsigned long __val) : _Base(__val) {
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/debug/
bitset 1 // Debugging bitset implementation -*- C++ -*-
26 /** @file debug/bitset
33 #include <bitset>
42 class bitset
43 : public _GLIBCXX_STD_D::bitset<_Nb>,
46 typedef _GLIBCXX_STD_D::bitset<_Nb> _Base;
56 friend class bitset;
59 reference(const _Base_ref& __base, bitset* __seq)
120 bitset() : _Base() { }
122 bitset(unsigned long __val) : _Base(__val) {
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/debug/
bitset 1 // Debugging bitset implementation -*- C++ -*-
26 /** @file debug/bitset
33 #include <bitset>
41 /// Class std::bitset with additional safety/checking/debug instrumentation.
43 class bitset
44 : public _GLIBCXX_STD_C::bitset<_Nb>
49 typedef _GLIBCXX_STD_C::bitset<_Nb> _Base;
53 // of bitset to be use as a literal.
65 friend class bitset;
69 bitset* __seq __attribute__((__unused__))
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/debug/
bitset 1 // Debugging bitset implementation -*- C++ -*-
26 /** @file debug/bitset
33 #include <bitset>
41 /// Class std::bitset with additional safety/checking/debug instrumentation.
43 class bitset
44 : public _GLIBCXX_STD_C::bitset<_Nb>
49 typedef _GLIBCXX_STD_C::bitset<_Nb> _Base;
53 // of bitset to be use as a literal.
65 friend class bitset;
69 bitset* __seq __attribute__((__unused__))
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/debug/
bitset 1 // Debugging bitset implementation -*- C++ -*-
26 /** @file debug/bitset
33 #include <bitset>
41 /// Class std::bitset with additional safety/checking/debug instrumentation.
43 class bitset
44 : public _GLIBCXX_STD_C::bitset<_Nb>
49 typedef _GLIBCXX_STD_C::bitset<_Nb> _Base;
53 // of bitset to be use as a literal.
65 friend class bitset;
69 bitset* __seq __attribute__((__unused__))
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/debug/
bitset 1 // Debugging bitset implementation -*- C++ -*-
26 /** @file debug/bitset
33 #include <bitset>
41 /// Class std::bitset with additional safety/checking/debug instrumentation.
43 class bitset
44 : public _GLIBCXX_STD_C::bitset<_Nb>
49 typedef _GLIBCXX_STD_C::bitset<_Nb> _Base;
53 // of bitset to be use as a literal.
65 friend class bitset;
69 bitset* __seq __attribute__((__unused__))) _GLIBCXX_NOEXCEP
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/debug/
bitset 1 // Debugging bitset implementation -*- C++ -*-
26 /** @file debug/bitset
33 #include <bitset>
41 /// Class std::bitset with additional safety/checking/debug instrumentation.
43 class bitset
44 : public _GLIBCXX_STD_C::bitset<_Nb>
49 typedef _GLIBCXX_STD_C::bitset<_Nb> _Base;
53 // of bitset to be use as a literal.
65 friend class bitset;
69 bitset* __seq __attribute__((__unused__))
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/debug/
bitset 1 // Debugging bitset implementation -*- C++ -*-
26 /** @file debug/bitset
33 #include <bitset>
41 /// Class std::bitset with additional safety/checking/debug instrumentation.
43 class bitset
44 : public _GLIBCXX_STD_C::bitset<_Nb>
49 typedef _GLIBCXX_STD_C::bitset<_Nb> _Base;
53 // of bitset to be use as a literal.
65 friend class bitset;
69 bitset* __seq __attribute__((__unused__))) _GLIBCXX_NOEXCEP
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/debug/
bitset 1 // Debugging bitset implementation -*- C++ -*-
25 /** @file debug/bitset
32 #include <bitset>
40 /// Class std::bitset with additional safety/checking/debug instrumentation.
42 class bitset
43 : public _GLIBCXX_STD_C::bitset<_Nb>
48 typedef _GLIBCXX_STD_C::bitset<_Nb> _Base;
52 // of bitset to be use as a literal.
64 friend class bitset;
68 bitset* __seq __attribute__((__unused__))) _GLIBCXX_NOEXCEP
    [all...]

Completed in 661 milliseconds

1 2 3 4 5 6 7 8 91011>>