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

1 2 3 4 5 6 7

  /external/stlport/test/unit/
bitset_header_test.cpp 8 #include <bitset>
  /ndk/tests/device/test-gnustl-full/unit/
bitset_header_test.cpp 8 #include <bitset>
  /ndk/tests/device/test-stlport/unit/
bitset_header_test.cpp 8 #include <bitset>
  /external/bison/lib/
bitset_stats.h 1 /* 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);
abitset.h 23 #include "bitset.h"
27 extern bitset abitset_init (bitset, bitset_bindex);
ebitset.h 23 #include "bitset.h"
27 extern bitset ebitset_init (bitset, bitset_bindex);
lbitset.h 23 #include "bitset.h"
27 extern bitset lbitset_init (bitset, bitset_bindex);
vbitset.h 23 #include "bitset.h"
27 extern bitset vbitset_init (bitset, bitset_bindex);
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...]
  /external/stlport/test/eh/
test_bitset.cpp 19 #include <bitset>
28 typedef bitset<100> TestBitset;
  /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...]
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/template.bitset/
version.pass.cpp 10 // <bitset>
12 #include <bitset>
  /external/bison/src/
ielr.h 23 #include <bitset.h>
44 bitset **item_lookahead_sets);
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/template.bitset/bitset.operators/
stream_in.pass.cpp 14 // operator<<(basic_ostream<charT, traits>& os, const bitset<N>& x);
16 #include <bitset>
23 std::bitset<8> b;
stream_out.pass.cpp 14 // operator>>(basic_istream<charT, traits>& is, bitset<N>& x);
16 #include <bitset>
23 std::bitset<8> b(0x5A);
op_and.pass.cpp 10 // 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;
op_not.pass.cpp 10 // 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;
op_or.pass.cpp 10 // 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/
antlr3bitset.h 3 * Defines the basic structures of an ANTLR3 bitset. this is a C version of the
4 * cut down Bitset class provided with the java version of antlr 3.
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)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/template.bitset/bitset.members/
op_and_eq.pass.cpp 10 // 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;
op_or_eq.pass.cpp 10 // 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;
op_xor_eq.pass.cpp 10 // 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;
index_const.pass.cpp 12 #include <bitset>
19 std::bitset<N>
22 std::bitset<N> v;
31 const std::bitset<N> v1 = make_bitset<N>();
size.pass.cpp 12 #include <bitset>
18 const std::bitset<N> v;

Completed in 410 milliseconds

1 2 3 4 5 6 7