Searched refs:bitset (Results 1 - 25 of 151) sorted by relevance

1234567

/external/stlport/test/unit/
H A Dbitset_header_test.cpp8 #include <bitset>
/external/bison/lib/
H A Dbitset_stats.h1 /* Functions to support bitset statistics.
27 extern enum bitset_type bitset_stats_type_get (bitset);
31 extern bitset bitset_stats_init (bitset, bitset_bindex, enum bitset_type);
H A Dabitset.h23 #include "bitset.h"
27 extern bitset abitset_init (bitset, bitset_bindex);
H A Debitset.h23 #include "bitset.h"
27 extern bitset ebitset_init (bitset, bitset_bindex);
H A Dlbitset.h23 #include "bitset.h"
27 extern bitset lbitset_init (bitset, bitset_bindex);
H A Dvbitset.h23 #include "bitset.h"
27 extern bitset vbitset_init (bitset, bitset_bindex);
H A Dbbitset.h1 /* 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_binde
[all...]
H A Dbitset.c22 #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 o
[all...]
/external/stlport/test/eh/
H A Dtest_bitset.cpp19 #include <bitset>
28 typedef bitset<100> TestBitset;
/external/libcxx/test/utilities/template.bitset/bitset.hash/
H A DAndroid.mk17 test_makefile := external/libcxx/test/utilities/template.bitset/bitset.hash/Android.mk
19 test_name := utilities/template.bitset/bitset.hash/bitset
20 test_src := bitset.pass.cpp
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3bitset.c43 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_INT3
63 antlr3BitsetFree(pANTLR3_BITSET bitset) argument
78 pANTLR3_BITSET bitset; local
122 antlr3BitsetSetAPI(pANTLR3_BITSET bitset) argument
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
379 antlr3BitsetAdd(pANTLR3_BITSET bitset, ANTLR3_INT32 bit) argument
395 grow(pANTLR3_BITSET bitset, ANTLR3_INT32 newSize) argument
421 growToInclude(pANTLR3_BITSET bitset, ANTLR3_INT32 bit) argument
440 antlr3BitsetORInPlace(pANTLR3_BITSET bitset, pANTLR3_BITSET bitset2) argument
483 antlr3BitsetSize(pANTLR3_BITSET bitset) argument
571 antlr3BitsetMember(pANTLR3_BITSET bitset, ANTLR3_UINT32 bit) argument
593 antlr3BitsetRemove(pANTLR3_BITSET bitset, ANTLR3_UINT32 bit) argument
605 antlr3BitsetIsNil(pANTLR3_BITSET bitset) argument
633 antlr3BitsetNumBits(pANTLR3_BITSET bitset) argument
646 antlr3BitsetToIntList(pANTLR3_BITSET bitset) argument
[all...]
/external/libcxx/test/utilities/template.bitset/
H A Dversion.pass.cpp10 // <bitset>
12 #include <bitset>
/external/libcxx/test/utilities/template.bitset/bitset.members/
H A DAndroid.mk17 test_makefile := external/libcxx/test/utilities/template.bitset/bitset.members/Android.mk
19 test_name := utilities/template.bitset/bitset.members/right_shift
23 test_name := utilities/template.bitset/bitset.members/flip_all
27 test_name := utilities/template.bitset/bitset.members/op_and_eq
31 test_name := utilities/template.bitset/bitset
[all...]
H A Dop_and_eq.pass.cpp10 // test bitset<N>& operator&=(const bitset<N>& rhs);
12 #include <bitset>
19 std::bitset<N>
22 std::bitset<N> v;
31 std::bitset<N> v1 = make_bitset<N>();
32 std::bitset<N> v2 = make_bitset<N>();
33 std::bitset<N> v3 = v1;
H A Dop_or_eq.pass.cpp10 // test bitset<N>& operator|=(const bitset<N>& rhs);
12 #include <bitset>
19 std::bitset<N>
22 std::bitset<N> v;
31 std::bitset<N> v1 = make_bitset<N>();
32 std::bitset<N> v2 = make_bitset<N>();
33 std::bitset<N> v3 = v1;
H A Dop_xor_eq.pass.cpp10 // test bitset<N>& operator^=(const bitset<N>& rhs);
12 #include <bitset>
19 std::bitset<N>
22 std::bitset<N> v;
31 std::bitset<N> v1 = make_bitset<N>();
32 std::bitset<N> v2 = make_bitset<N>();
33 std::bitset<N> v3 = v1;
/external/bison/src/
H A Dielr.h23 #include <bitset.h>
44 bitset **item_lookahead_sets);
/external/libcxx/test/utilities/template.bitset/bitset.operators/
H A Dstream_in.pass.cpp14 // operator<<(basic_ostream<charT, traits>& os, const bitset<N>& x);
16 #include <bitset>
23 std::bitset<8> b;
H A Dstream_out.pass.cpp14 // operator>>(basic_istream<charT, traits>& is, bitset<N>& x);
16 #include <bitset>
23 std::bitset<8> b(0x5A);
H A DAndroid.mk17 test_makefile := external/libcxx/test/utilities/template.bitset/bitset.operators/Android.mk
19 test_name := utilities/template.bitset/bitset.operators/op_or
23 test_name := utilities/template.bitset/bitset.operators/op_and
27 test_name := utilities/template.bitset/bitset.operators/stream_out
31 test_name := utilities/template.bitset/bitset
[all...]
H A Dop_and.pass.cpp10 // test bitset<N> operator&(const bitset<N>& lhs, const bitset<N>& rhs);
12 #include <bitset>
19 std::bitset<N>
22 std::bitset<N> v;
31 std::bitset<N> v1 = make_bitset<N>();
32 std::bitset<N> v2 = make_bitset<N>();
33 std::bitset<N> v3 = v1;
H A Dop_not.pass.cpp10 // test bitset<N> operator^(const bitset<N>& lhs, const bitset<N>& rhs);
12 #include <bitset>
19 std::bitset<N>
22 std::bitset<N> v;
31 std::bitset<N> v1 = make_bitset<N>();
32 std::bitset<N> v2 = make_bitset<N>();
33 std::bitset<N> v3 = v1;
H A Dop_or.pass.cpp10 // test bitset<N> operator|(const bitset<N>& lhs, const bitset<N>& rhs);
12 #include <bitset>
19 std::bitset<N>
22 std::bitset<N> v;
31 std::bitset<N> v1 = make_bitset<N>();
32 std::bitset<N> v2 = make_bitset<N>();
33 std::bitset<N> v3 = v1;
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3bitset.h3 * Defines the basic structures of an ANTLR3 bitset. this is a C version of the
75 /// of the bitset code. Note that the pointer here may be static if laid down
95 void (*borInPlace) (struct ANTLR3_BITSET_struct * bitset, struct ANTLR3_BITSET_struct * bitset2);
96 ANTLR3_UINT32 (*size) (struct ANTLR3_BITSET_struct * bitset);
97 void (*add) (struct ANTLR3_BITSET_struct * bitset, ANTLR3_INT32 bit);
98 void (*grow) (struct ANTLR3_BITSET_struct * bitset, ANTLR3_INT32 newSize);
100 ANTLR3_BOOLEAN (*isMember) (struct ANTLR3_BITSET_struct * bitset, ANTLR3_UINT32 bit);
101 ANTLR3_UINT32 (*numBits) (struct ANTLR3_BITSET_struct * bitset);
102 void (*remove) (struct ANTLR3_BITSET_struct * bitset, ANTLR3_UINT32 bit);
103 ANTLR3_BOOLEAN (*isNilNode) (struct ANTLR3_BITSET_struct * bitset);
[all...]
/external/libcxx/test/utilities/template.bitset/bitset.cons/
H A DAndroid.mk17 test_makefile := external/libcxx/test/utilities/template.bitset/bitset.cons/Android.mk
19 test_name := utilities/template.bitset/bitset.cons/default
23 test_name := utilities/template.bitset/bitset.cons/ull_ctor
27 test_name := utilities/template.bitset/bitset.cons/char_ptr_ctor
31 test_name := utilities/template.bitset/bitset
[all...]

Completed in 568 milliseconds

1234567