HomeSort by relevance Sort by last modified time
    Searched refs:bitset (Results 1 - 25 of 479) 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> >();
  /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...]
  /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/r11/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/template.bitset/
version.pass.cpp 10 // <bitset>
12 #include <bitset>
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/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...]
  /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/bison/src/
ielr.h 23 #include <bitset.h>
44 bitset **item_lookahead_sets);
  /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);
  /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/r11/sources/cxx-stl/llvm-libc++/libcxx/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);
  /prebuilts/ndk/r13/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;

Completed in 1186 milliseconds

1 2 3 4 5 6 7 8 91011>>