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

1 23 4 5 6 7

  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/template.bitset/bitset.members/
any.pass.cpp 12 #include <bitset>
18 std::bitset<N> v;
none.pass.cpp 12 #include <bitset>
18 std::bitset<N> v;
reset_one.pass.cpp 10 // test bitset<N>& reset(size_t pos);
12 #include <bitset>
21 std::bitset<N> v;
  /external/bison/lib/
bitset.h 23 /* This file is the public interface to the bitset abstract data type.
34 /* Attributes used to select a bitset implementation. */
35 enum bitset_attr {BITSET_FIXED = 1, /* Bitset size fixed. */
36 BITSET_VARIABLE = 2, /* Bitset size variable. */
37 BITSET_DENSE = 4, /* Bitset dense. */
38 BITSET_SPARSE = 8, /* Bitset sparse. */
52 struct bbitset_struct b; /* Base bitset data. */
77 bitset bset;
100 /* Return bytes required for bitset of desired type and size. */
103 /* Initialise a bitset with desired type and size. *
    [all...]
bitsetv.h 0 /* Bitset vectors.
23 #include "bitset.h"
25 typedef bitset * bitsetv;
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...]
  /external/stlport/src/
bitset.cpp 21 #include <bitset>
  /external/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)
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/template.bitset/
includes.pass.cpp 10 // test that <bitset> includes <cstddef>, <string>, <stdexcept> and <iosfwd>
12 #include <bitset>
  /ndk/sources/cxx-stl/stlport/src/
bitset.cpp 21 #include <bitset>
  /ndk/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/5/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/6/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/7/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/8/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)
  /external/stlport/test/unit/
bitset_test.cpp 1 #include <bitset>
38 bitset<13U> b1(0xFFFF);
39 bitset<13U> b2(0x1111);
83 bitset<13U> b(0x1111);
87 bitset<13U> b1;
97 bitset<13U> b(0x1111);
101 bitset<13U> b1;
  /ndk/tests/device/test-gnustl-full/unit/
bitset_test.cpp 1 #include <bitset>
38 bitset<13U> b1(0xFFFF);
39 bitset<13U> b2(0x1111);
83 bitset<13U> b(0x1111);
87 bitset<13U> b1;
97 bitset<13U> b(0x1111);
101 bitset<13U> b1;
  /ndk/tests/device/test-stlport/unit/
bitset_test.cpp 1 #include <bitset>
38 bitset<13U> b1(0xFFFF);
39 bitset<13U> b2(0x1111);
83 bitset<13U> b(0x1111);
87 bitset<13U> b1;
97 bitset<13U> b(0x1111);
101 bitset<13U> b1;
  /external/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...]
  /ndk/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/5/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/6/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/7/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/8/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...]

Completed in 1491 milliseconds

1 23 4 5 6 7