Lines Matching refs:tmp2

59     libecc::bitset<n> tmp2 = zeros;  in testBitOpsLevel3()  local
60 CPPUNIT_ASSERT( !tmp2.template test<b>() ); in testBitOpsLevel3()
61 CPPUNIT_ASSERT( !tmp2.any() ); in testBitOpsLevel3()
62 tmp2.template set<b>(); in testBitOpsLevel3()
63 CPPUNIT_ASSERT( tmp1 == tmp2 ); in testBitOpsLevel3()
64 CPPUNIT_ASSERT( tmp2.template test<b>() ); in testBitOpsLevel3()
65 CPPUNIT_ASSERT( tmp2.any() ); in testBitOpsLevel3()
66 tmp2.template clear<b>(); in testBitOpsLevel3()
67 CPPUNIT_ASSERT( tmp2 == zeros ); in testBitOpsLevel3()
68 tmp2.template flip<b>(); in testBitOpsLevel3()
69 CPPUNIT_ASSERT( tmp2 == tmp1 ); in testBitOpsLevel3()
70 tmp2.template flip<b>(); in testBitOpsLevel3()
71 CPPUNIT_ASSERT( tmp2 == zeros ); in testBitOpsLevel3()
72 tmp2 = ones; in testBitOpsLevel3()
73 CPPUNIT_ASSERT( tmp2.template test<b>() ); in testBitOpsLevel3()
74 CPPUNIT_ASSERT( tmp2.any() ); in testBitOpsLevel3()
75 tmp2.template clear<b>(); in testBitOpsLevel3()
77 CPPUNIT_ASSERT( tmp2 == tmp3 ); in testBitOpsLevel3()
78 CPPUNIT_ASSERT( !tmp2.template test<b>() ); in testBitOpsLevel3()
79 CPPUNIT_ASSERT( tmp2.any() ); in testBitOpsLevel3()
80 tmp2.template set<b>(); in testBitOpsLevel3()
81 CPPUNIT_ASSERT( tmp2 == ones ); in testBitOpsLevel3()
82 tmp2.template flip<b>(); in testBitOpsLevel3()
83 CPPUNIT_ASSERT( tmp2 == tmp3 ); in testBitOpsLevel3()
84 tmp2.template flip<b>(); in testBitOpsLevel3()
85 CPPUNIT_ASSERT( tmp2 == ones ); in testBitOpsLevel3()
96 libecc::bitset<n> tmp2 = zeros; in testBitOpsLevel2() local
97 CPPUNIT_ASSERT( !tmp2.test(b) ); in testBitOpsLevel2()
98 CPPUNIT_ASSERT( !tmp2.any() ); in testBitOpsLevel2()
99 tmp2.set(b); in testBitOpsLevel2()
100 CPPUNIT_ASSERT( tmp1 == tmp2 ); in testBitOpsLevel2()
101 CPPUNIT_ASSERT( tmp2.test(b) ); in testBitOpsLevel2()
102 CPPUNIT_ASSERT( tmp2.any() ); in testBitOpsLevel2()
103 tmp2.clear(b); in testBitOpsLevel2()
104 CPPUNIT_ASSERT( tmp2 == zeros ); in testBitOpsLevel2()
105 tmp2.flip(b); in testBitOpsLevel2()
106 CPPUNIT_ASSERT( tmp2 == tmp1 ); in testBitOpsLevel2()
107 tmp2.flip(b); in testBitOpsLevel2()
108 CPPUNIT_ASSERT( tmp2 == zeros ); in testBitOpsLevel2()
109 tmp2 = ones; in testBitOpsLevel2()
110 CPPUNIT_ASSERT( tmp2.test(b) ); in testBitOpsLevel2()
111 CPPUNIT_ASSERT( tmp2.any() ); in testBitOpsLevel2()
112 tmp2.clear(b); in testBitOpsLevel2()
114 CPPUNIT_ASSERT( tmp2 == tmp3 ); in testBitOpsLevel2()
115 CPPUNIT_ASSERT( !tmp2.test(b) ); in testBitOpsLevel2()
116 CPPUNIT_ASSERT( tmp2.any() ); in testBitOpsLevel2()
117 tmp2.set(b); in testBitOpsLevel2()
118 CPPUNIT_ASSERT( tmp2 == ones ); in testBitOpsLevel2()
119 tmp2.flip(b); in testBitOpsLevel2()
120 CPPUNIT_ASSERT( tmp2 == tmp3 ); in testBitOpsLevel2()
121 tmp2.flip(b); in testBitOpsLevel2()
122 CPPUNIT_ASSERT( tmp2 == ones ); in testBitOpsLevel2()