HomeSort by relevance Sort by last modified time
    Searched defs:bitset (Results 1 - 7 of 7) sorted by null

  /external/stlport/stlport/stl/
_bitset.c 83 __stl_throw_overflow_error("bitset");
179 operator>>(basic_istream<_CharT, _Traits>& __is, bitset<_Nb>& __x) {
220 const bitset<_Nb>& __x) {
233 #undef bitset macro
_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/android/stlport/stlport/stl/
_bitset.c 83 __stl_throw_overflow_error("bitset");
179 operator>>(basic_istream<_CharT, _Traits>& __is, bitset<_Nb>& __x) {
220 const bitset<_Nb>& __x) {
233 #undef bitset macro
_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/icu4c/test/intltest/
bidiconf.cpp 339 uint32_t bitset=(uint32_t)strtoul(start, &end, 10); local
341 errln("input bitset parse error at %s", start);
344 // Loop over the bitset.
348 if(bitset&(1<<i)) {
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/util/
BitSetTest.java 20 import java.util.BitSet;
26 BitSet eightbs;
29 * @tests java.util.BitSet#BitSet()
32 BitSet bs = new BitSet();
33 assertEquals("Create BitSet of incorrect size", 64, bs.size());
34 assertEquals("New BitSet had invalid string representation", "{}",
39 * @tests java.util.BitSet#BitSet(int
179 BitSet bitset = new BitSet(); local
402 BitSet bitset = new BitSet(30); local
614 BitSet bitset = new BitSet(); local
814 BitSet bitset = new BitSet(30); local
    [all...]
  /external/bison/lib/
bbitset.h 1 /* Base bitset stuff.
30 Memory for bit array and bitset structure allocated
39 BITSET_STATS: Wrapper bitset for internal use only. Used for gathering
93 that the bitset is known to be zero, that a bit has been set
100 typedef union bitset_union *bitset; typedef in typeref:union:bitset_union
103 /* Private accessor macros to bitset structure. */
114 void (*set) (bitset, bitset_bindex);
115 void (*reset) (bitset, bitset_bindex);
116 bool (*toggle) (bitset, bitset_bindex);
117 bool (*test) (bitset, bitset_bindex)
    [all...]

Completed in 812 milliseconds