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

12 3 4 5 6 7

  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/template.bitset/bitset.members/
flip_all.pass.cpp 10 // test bitset<N>& flip();
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 = v1;
left_shift.pass.cpp 10 // test bitset<N> operator<<(size_t pos) const;
12 #include <bitset>
19 std::bitset<N>
22 std::bitset<N> v;
33 std::bitset<N> v1 = make_bitset<N>();
34 std::bitset<N> v2 = v1;
left_shift_eq.pass.cpp 10 // test bitset<N>& operator<<=(size_t pos);
12 #include <bitset>
19 std::bitset<N>
22 std::bitset<N> v;
33 std::bitset<N> v1 = make_bitset<N>();
34 std::bitset<N> v2 = v1;
not_all.pass.cpp 10 // test bitset<N> operator~() const;
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 = ~v1;
op_eq_eq.pass.cpp 12 // bool operator==(const bitset<N>& rhs) const;
13 // bool operator!=(const bitset<N>& rhs) const;
15 #include <bitset>
22 std::bitset<N>
25 std::bitset<N> v;
34 const std::bitset<N> v1 = make_bitset<N>();
35 std::bitset<N> v2 = v1;
right_shift.pass.cpp 10 // test bitset<N> operator>>(size_t pos) const;
12 #include <bitset>
19 std::bitset<N>
22 std::bitset<N> v;
33 std::bitset<N> v1 = make_bitset<N>();
34 std::bitset<N> v2 = v1;
right_shift_eq.pass.cpp 10 // test bitset<N>& operator<<=(size_t pos);
12 #include <bitset>
19 std::bitset<N>
22 std::bitset<N> v;
33 std::bitset<N> v1 = make_bitset<N>();
34 std::bitset<N> v2 = v1;
count.pass.cpp 12 #include <bitset>
19 std::bitset<N>
22 std::bitset<N> v;
31 const std::bitset<N> v = make_bitset<N>();
flip_one.pass.cpp 10 // test bitset<N>& flip(size_t pos);
12 #include <bitset>
19 std::bitset<N>
22 std::bitset<N> v;
31 std::bitset<N> v = make_bitset<N>();
test.pass.cpp 12 #include <bitset>
19 std::bitset<N>
22 std::bitset<N> v;
31 const std::bitset<N> v1 = make_bitset<N>();
all.pass.cpp 12 #include <bitset>
18 std::bitset<N> v;
reset_all.pass.cpp 10 // test bitset<N>& reset();
12 #include <bitset>
20 std::bitset<N> v;
set_all.pass.cpp 10 // test bitset<N>& set();
12 #include <bitset>
20 std::bitset<N> v;
set_one.pass.cpp 10 // test bitset<N>& set(size_t pos, bool val = true);
12 #include <bitset>
18 std::bitset<N> v;
index.pass.cpp 10 // test bitset<N>::reference operator[](size_t pos);
12 #include <bitset>
19 std::bitset<N>
22 std::bitset<N> v;
31 std::bitset<N> v1 = make_bitset<N>();
35 typename std::bitset<N>::reference r = v1[N/2];
37 typename std::bitset<N>::reference r2 = v1[N/2];
  /external/bison/lib/
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...]
abitset.c 36 abitset_resize (bitset src, bitset_bindex size)
49 abitset_small_list (bitset src, bitset_bindex *list,
104 /* Set bit BITNO in bitset DST. */
106 abitset_set (bitset dst ATTRIBUTE_UNUSED, bitset_bindex bitno ATTRIBUTE_UNUSED)
110 bounds of the bitset. */
115 /* Reset bit BITNO in bitset DST. */
117 abitset_reset (bitset dst ATTRIBUTE_UNUSED,
122 bounds of the bitset. Since the bit is zero anyway, let it pass. */
126 /* Test bit BITNO in bitset SRC. */
128 abitset_test (bitset src ATTRIBUTE_UNUSED
    [all...]
vbitset.c 31 Note that binary or ternary operations assume that each bitset operand
35 static void vbitset_unused_clear (bitset);
37 static void vbitset_set (bitset, bitset_bindex);
38 static void vbitset_reset (bitset, bitset_bindex);
39 static bool vbitset_test (bitset, bitset_bindex);
40 static bitset_bindex vbitset_list (bitset, bitset_bindex *,
42 static bitset_bindex vbitset_list_reverse (bitset, bitset_bindex *,
56 vbitset_resize (bitset src, bitset_bindex n_bits)
71 /* The bitset needs to grow. If we already have enough memory
77 grow the bitset 25% larger than requested to reduc
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/template.bitset/bitset.cons/
default.pass.cpp 12 #include <bitset>
21 _LIBCPP_CONSTEXPR std::bitset<N> v1;
string_ctor.pass.cpp 10 // test bitset(string, pos, n, zero, one);
12 #include <bitset>
24 std::bitset<N> v(str, str.size()+1, 10);
36 std::bitset<N> v(str, 2, 10);
46 std::bitset<N> v(str, 3, 10);
58 std::bitset<N> v(str, 2, 10, 'a', 'b');
68 std::bitset<N> v(str, 3, 10, 'a', 'b');
char_ptr_ctor.pass.cpp 11 // explicit bitset(const charT* str,
15 #include <bitset>
26 std::bitset<N> v("xxx1010101010xxxx");
36 std::bitset<N> v(str);
ull_ctor.pass.cpp 10 // test bitset(unsigned long long val);
12 #include <bitset>
21 _LIBCPP_CONSTEXPR std::bitset<N> v(0xAAAAAAAAAAAAAAAAULL);
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/template.bitset/bitset.hash/
bitset.pass.cpp 21 #include <bitset>
29 typedef std::bitset<N> T;
  /external/bison/src/
InadequacyList.h 23 #include <bitset.h>
67 bitset actions;
114 state *manifesting_state, symbol *token, bitset actions,
  /external/chromium/base/
message_pump_glib_x.h 11 #include <bitset>
78 std::bitset<LASTEvent> capture_x_events_;
79 std::bitset<GDK_EVENT_LAST> capture_gdk_events_;

Completed in 608 milliseconds

12 3 4 5 6 7