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

1 2 3 4 5 6 7 8 91011>>

  /external/libcxx/test/std/utilities/template.bitset/bitset.hash/
enabled_hash.pass.cpp 12 // <bitset>
14 // Test that <bitset> provides all of the arithmetic, enum, and pointer
17 #include <bitset>
24 test_hash_enabled_for_type<std::bitset<0> >();
25 test_hash_enabled_for_type<std::bitset<1> >();
26 test_hash_enabled_for_type<std::bitset<1024> >();
27 test_hash_enabled_for_type<std::bitset<100000> >();
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/template.bitset/bitset.hash/
enabled_hash.pass.cpp 12 // <bitset>
14 // Test that <bitset> provides all of the arithmetic, enum, and pointer
17 #include <bitset>
24 test_hash_enabled_for_type<std::bitset<0> >();
25 test_hash_enabled_for_type<std::bitset<1> >();
26 test_hash_enabled_for_type<std::bitset<1024> >();
27 test_hash_enabled_for_type<std::bitset<100000> >();
  /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/libcxx/test/libcxx/utilities/template.bitset/
version.pass.cpp 10 // <bitset>
12 #include <bitset>
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/libcxx/utilities/template.bitset/
version.pass.cpp 10 // <bitset>
12 #include <bitset>
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Parser/
bitset.c 2 /* Bitset primitives used by the parser generator */
5 #include "bitset.h"
7 bitset
11 bitset ss = (char *)PyObject_MALLOC(sizeof(BYTE) * nbytes);
14 Py_FatalError("no mem for bitset");
23 delbitset(bitset ss)
29 addbit(bitset ss, int ibit)
42 testbit(bitset ss, int ibit)
49 samebitset(bitset ss1, bitset ss2, int nbits)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
bitset.c 2 /* Bitset primitives used by the parser generator */
5 #include "bitset.h"
7 bitset
11 bitset ss = (char *)PyObject_MALLOC(sizeof(BYTE) * nbytes);
14 Py_FatalError("no mem for bitset");
23 delbitset(bitset ss)
29 addbit(bitset ss, int ibit)
42 testbit(bitset ss, int ibit)
49 samebitset(bitset ss1, bitset ss2, int nbits)
    [all...]
  /external/python/cpython2/Parser/
bitset.c 2 /* Bitset primitives used by the parser generator */
5 #include "bitset.h"
7 bitset
11 bitset ss = (char *)PyObject_MALLOC(sizeof(BYTE) * nbytes);
14 Py_FatalError("no mem for bitset");
23 delbitset(bitset ss)
29 addbit(bitset ss, int ibit)
42 testbit(bitset ss, int ibit)
49 samebitset(bitset ss1, bitset ss2, int nbits
    [all...]
  /external/python/cpython3/Parser/
bitset.c 2 /* Bitset primitives used by the parser generator */
5 #include "bitset.h"
7 bitset
11 bitset ss = (char *)PyObject_MALLOC(sizeof(BYTE) * nbytes);
14 Py_FatalError("no mem for bitset");
23 delbitset(bitset ss)
29 addbit(bitset ss, int ibit)
42 testbit(bitset ss, int ibit)
49 samebitset(bitset ss1, bitset ss2, int nbits
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
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);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
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/libcxx/test/std/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);
  /external/python/cpython2/Include/
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/python/cpython3/Include/
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/gdb/darwin-x86/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/gdb/linux-x86/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/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/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);
  /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/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...]
  /external/compiler-rt/test/asan/TestCases/
coverage-reset.cc 24 bitset = 0; \
26 if (guards[i]) bitset |= 1U << i; \
27 printf("line %d: bitset %zd total: %zd\n", __LINE__, bitset, \
34 size_t bitset; local
38 size_t main_bit = bitset;
43 size_t foo_bit = bitset & ~main_bit;
48 size_t bar_bit = bitset & ~(main_bit | foo_bit);
54 assert(bitset == 0);
58 assert(bitset == foo_bit)
    [all...]
  /external/libcxx/test/std/utilities/template.bitset/bitset.members/
op_and_eq.pass.cpp 10 // test bitset<N>& operator&=(const bitset<N>& rhs);
12 #include <bitset>
25 std::bitset<N>
28 std::bitset<N> v;
37 std::bitset<N> v1 = make_bitset<N>();
38 std::bitset<N> v2 = make_bitset<N>();
39 std::bitset<N> v3 = v1;
op_or_eq.pass.cpp 10 // test bitset<N>& operator|=(const bitset<N>& rhs);
12 #include <bitset>
25 std::bitset<N>
28 std::bitset<N> v;
37 std::bitset<N> v1 = make_bitset<N>();
38 std::bitset<N> v2 = make_bitset<N>();
39 std::bitset<N> v3 = v1;

Completed in 2310 milliseconds

1 2 3 4 5 6 7 8 91011>>