Lines Matching refs:b2
39 bitset<13U> b2(0x1111); in bitset1() local
42 CPPUNIT_ASSERT(b2.size() == 13); in bitset1()
43 CPPUNIT_ASSERT(b2 == 0x1111); in bitset1()
46 b1 = b1 ^ (b2 << 2); in bitset1()
50 CPPUNIT_ASSERT(b2.count() == 4); in bitset1()
53 size_t __pos = b2._Find_first(); in bitset1()
55 __pos = b2._Find_next(__pos); in bitset1()
57 __pos = b2._Find_next(__pos); in bitset1()
59 __pos = b2._Find_next(__pos); in bitset1()
61 __pos = b2._Find_next(__pos); in bitset1()
67 string representation = b2.to_string<char, char_traits<char>, allocator<char> >(); in bitset1()
70 wstring wrepresentation = b2.to_string<wchar_t, char_traits<wchar_t>, allocator<wchar_t> >(); in bitset1()
74 CPPUNIT_ASSERT( b2.to_string() == "1000100010001" ); in bitset1()