HomeSort by relevance Sort by last modified time
    Searched refs:bitset (Results 176 - 200 of 479) sorted by null

1 2 3 4 5 6 78 91011>>

  /prebuilts/ndk/r11/sources/cxx-stl/stlport/src/
bitset.cpp 21 #include <bitset>
  /prebuilts/ndk/r11/sources/cxx-stl/stlport/stlport/
bitset 21 // This implementation of bitset<> has a second template parameter,
26 // A bitset of size N, using words of type _WordT, will have
29 // of class bitset<> that those unused bits are always zero.
31 // Most of the actual code isn't contained in bitset<> itself, but in the
34 // important special case where the bitset is only a single word.
55 # include_next <bitset>
57 # include _STLP_NATIVE_HEADER(bitset)
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/utilities/template.bitset/
includes.pass.cpp 10 // test that <bitset> includes <cstddef>, <string>, <stdexcept> and <iosfwd>
12 #include <bitset>
  /prebuilts/ndk/r13/sources/cxx-stl/stlport/src/
bitset.cpp 21 #include <bitset>
  /prebuilts/ndk/r13/sources/cxx-stl/stlport/stlport/
bitset 21 // This implementation of bitset<> has a second template parameter,
26 // A bitset of size N, using words of type _WordT, will have
29 // of class bitset<> that those unused bits are always zero.
31 // Most of the actual code isn't contained in bitset<> itself, but in the
34 // important special case where the bitset is only a single word.
55 # include_next <bitset>
57 # include _STLP_NATIVE_HEADER(bitset)
  /prebuilts/ndk/r10/sources/cxx-stl/stlport/stlport/stl/
_bitset.h 22 // A bitset of size N has N % (sizeof(unsigned long) * CHAR_BIT) unused
24 // a class invariant of class bitset<> that those unused bits are
27 // Most of the actual code isn't contained in bitset<> itself, but in the
30 // important special case where the bitset is only a single word.
344 // Class bitset.
347 class bitset : public _STLP_PRIV _Base_bitset<__BITSET_WORDS(_Nb) > { class in inherits:_STLP_PRIV_Base_bitset
365 typedef bitset<_Nb> _Bitset;
415 bitset() {} function in class:bitset
417 bitset(unsigned long __val) : _STLP_PRIV _Base_bitset<_Words>(__val) { _M_do_sanitize(); } function in class:bitset
421 explicit bitset(const basic_string<_CharT,_Traits,_Alloc>& __s function in class:bitset
430 bitset(const basic_string<_CharT, _Traits, _Alloc>& __s, function in class:bitset
439 explicit bitset(const string& __s, function in class:bitset
865 #undef bitset macro
    [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/stlport/stlport/stl/
_bitset.h 22 // A bitset of size N has N % (sizeof(unsigned long) * CHAR_BIT) unused
24 // a class invariant of class bitset<> that those unused bits are
27 // Most of the actual code isn't contained in bitset<> itself, but in the
30 // important special case where the bitset is only a single word.
344 // Class bitset.
347 class bitset : public _STLP_PRIV _Base_bitset<__BITSET_WORDS(_Nb) > { class in inherits:_STLP_PRIV_Base_bitset
365 typedef bitset<_Nb> _Bitset;
415 bitset() {} function in class:bitset
417 bitset(unsigned long __val) : _STLP_PRIV _Base_bitset<_Words>(__val) { _M_do_sanitize(); } function in class:bitset
421 explicit bitset(const basic_string<_CharT,_Traits,_Alloc>& __s function in class:bitset
430 bitset(const basic_string<_CharT, _Traits, _Alloc>& __s, function in class:bitset
439 explicit bitset(const string& __s, function in class:bitset
865 #undef bitset macro
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/stlport/stlport/stl/
_bitset.h 22 // A bitset of size N has N % (sizeof(unsigned long) * CHAR_BIT) unused
24 // a class invariant of class bitset<> that those unused bits are
27 // Most of the actual code isn't contained in bitset<> itself, but in the
30 // important special case where the bitset is only a single word.
344 // Class bitset.
347 class bitset : public _STLP_PRIV _Base_bitset<__BITSET_WORDS(_Nb) > { class in inherits:_STLP_PRIV_Base_bitset
365 typedef bitset<_Nb> _Bitset;
415 bitset() {} function in class:bitset
417 bitset(unsigned long __val) : _STLP_PRIV _Base_bitset<_Words>(__val) { _M_do_sanitize(); } function in class:bitset
421 explicit bitset(const basic_string<_CharT,_Traits,_Alloc>& __s function in class:bitset
430 bitset(const basic_string<_CharT, _Traits, _Alloc>& __s, function in class:bitset
439 explicit bitset(const string& __s, function in class:bitset
865 #undef bitset macro
    [all...]
  /external/bison/lib/
lbitset.c 76 /* Obstack to allocate bitset elements from. */
79 static lbitset_elt *lbitset_free_list; /* Free list of bitset elements. */
81 extern void debug_lbitset (bitset);
164 /* Unlink element ELT from bitset BSET. */
166 lbitset_elt_unlink (bitset bset, lbitset_elt *elt)
208 /* Cut the chain of bitset BSET before element ELT and free the
211 lbitset_prune (bitset bset, lbitset_elt *elt)
255 /* Link the bitset element into the current bitset linked list. */
257 lbitset_elt_link (bitset bset, lbitset_elt *elt
    [all...]
ebitset.c 38 case is fast. A zero bitset is indicated when cdata is 0. This is
39 conservative since cdata may be non zero and the bitset may still
42 The bitset cache can be disabled either by setting cindex to
84 /* Obstack to allocate bitset elements from. */
87 static ebitset_elt *ebitset_free_list; /* Free list of bitset elements. */
97 /* Disable bitset cache and mark BSET as being zero. */
103 /* Disable bitset cache and mark BSET as being possibly non-zero. */
107 /* A conservative estimate of whether the bitset is zero.
108 This is non-zero only if we know for sure that the bitset is zero. */
123 ebitset_resize (bitset src, bitset_bindex n_bits
    [all...]
bitsetv.c 0 /* Bitset vectors.
28 bitset *
34 bitset *bsetv;
41 if (BITSET_SIZE_MAX / (sizeof (bitset) + bytes) <= n_vecs)
44 /* Allocate vector table at head of bitset array. */
45 vector_bytes = (n_vecs + 1) * sizeof (bitset) + bytes - 1;
51 bsetv[i] = (bitset) (void *) ((char *) bsetv + vector_bytes + i * bytes);
64 bitset *
74 /* Free bitset vector BSETV. */
138 /* Dump the contents of a bitset vector BSETV with N_VECS elements t
    [all...]
  /external/v8/src/ast/
ast-types.h 145 // Note that the bitset representation is closed under both Union and Intersect.
148 // Values for bitset types
280 // Bitset types (internal).
284 typedef uint32_t bitset; // Internal typedef in class:v8::internal::AstBitsetType
293 static bitset SignedSmall();
294 static bitset UnsignedSmall();
296 bitset Bitset() {
297 return static_cast<bitset>(reinterpret_cast<uintptr_t>(this) ^ 1u);
300 static bool IsInhabited(bitset bits)
435 AstBitsetType::bitset bitset = AstBitsetType::Lub(*value); local
694 typedef AstBitsetType::bitset bitset; \/\/ Internal typedef in class:v8::internal::AstBitsetType::AstType
    [all...]
  /external/bison/src/
AnnotationList.h 111 state ***predecessors, bitset **item_lookahead_sets,
179 size_t nitems, bitset *lookaheads,
lalr.h 24 # include <bitset.h>
  /external/ltp/testcases/kernel/syscalls/futex/
futex_wait_bitset.h 26 u_int32_t bitset = 0xffffffff; local
35 TEST(futex_wait_bitset(&futex, futex, &to, bitset, flags));
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/template.bitset/bitset.members/
to_ullong.pass.cpp 12 #include <bitset>
34 std::bitset<N> v(j);
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/utilities/template.bitset/bitset.cons/
ull_ctor.pass.cpp 10 // test bitset(unsigned long long val);
12 #include <bitset>
24 _LIBCPP_CONSTEXPR std::bitset<N> v(0xAAAAAAAAAAAAAAAAULL);
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/utilities/template.bitset/bitset.members/
to_ullong.pass.cpp 12 #include <bitset>
34 std::bitset<N> v(j);
  /frameworks/native/vulkan/libvulkan/
driver_gen.h 24 #include <bitset>
97 const std::bitset<ProcHook::EXTENSION_COUNT>& extensions);
100 const std::bitset<ProcHook::EXTENSION_COUNT>& extensions);
  /hardware/qcom/display/msm8996/sdm/libs/core/fb/
hw_info.h 32 #include <bitset>
59 static const std::bitset<8> kDefaultFormatSupport[kHWSubBlockMax][
72 void PopulateSupportedFormatMap(const std::bitset<8> *format_supported, uint32_t format_count,
  /hardware/qcom/display/msm8998/sdm/libs/core/fb/
hw_info.h 32 #include <bitset>
60 static const std::bitset<8> kDefaultFormatSupport[kHWSubBlockMax][
73 void PopulateSupportedFormatMap(const std::bitset<8> *format_supported, uint32_t format_count,
  /hardware/qcom/display/sdm845/sdm/libs/core/fb/
hw_info.h 32 #include <bitset>
60 static const std::bitset<8> kDefaultFormatSupport[kHWSubBlockMax][
73 void PopulateSupportedFormatMap(const std::bitset<8> *format_supported, uint32_t format_count,
  /bionic/libc/private/
bionic_futex.h 45 int bitset) {
48 int result = syscall(__NR_futex, ftx, op, value, timeout, NULL, bitset);
  /external/libcxx/test/std/utilities/template.bitset/bitset.members/
to_ullong.pass.cpp 12 #include <bitset>
36 std::bitset<N> v(j);
to_ulong.pass.cpp 12 #include <bitset>
37 std::bitset<N> v(j);

Completed in 1686 milliseconds

1 2 3 4 5 6 78 91011>>