• Home
  • Raw
  • Download

Lines Matching refs:y2

26         boost::endian::endian_arithmetic<Order, T, sizeof(T) * 8, Align> y2( y );  in test_arithmetic_()  local
28 BOOST_TEST_EQ( x2 += x, y2 += y ); in test_arithmetic_()
33 boost::endian::endian_arithmetic<Order, T, sizeof(T) * 8, Align> y2( y ); in test_arithmetic_() local
35 BOOST_TEST_EQ( x2 -= x, y2 -= y ); in test_arithmetic_()
40 boost::endian::endian_arithmetic<Order, T, sizeof(T) * 8, Align> y2( y ); in test_arithmetic_() local
42 BOOST_TEST_EQ( x2 *= x, y2 *= y ); in test_arithmetic_()
47 boost::endian::endian_arithmetic<Order, T, sizeof(T) * 8, Align> y2( y ); in test_arithmetic_() local
49 BOOST_TEST_EQ( x2 /= x, y2 /= y ); in test_arithmetic_()
54 boost::endian::endian_arithmetic<Order, T, sizeof(T) * 8, Align> y2( y ); in test_arithmetic_() local
56 BOOST_TEST_EQ( ++x2, ++y2 ); in test_arithmetic_()
61 boost::endian::endian_arithmetic<Order, T, sizeof(T) * 8, Align> y2( y ); in test_arithmetic_() local
63 BOOST_TEST_EQ( --x2, --y2 ); in test_arithmetic_()
68 boost::endian::endian_arithmetic<Order, T, sizeof(T) * 8, Align> y2( y ); in test_arithmetic_() local
70 BOOST_TEST_EQ( x2++, y2++ ); in test_arithmetic_()
75 boost::endian::endian_arithmetic<Order, T, sizeof(T) * 8, Align> y2( y ); in test_arithmetic_() local
77 BOOST_TEST_EQ( x2--, y2-- ); in test_arithmetic_()
96 boost::endian::endian_arithmetic<Order, T, sizeof(T) * 8, Align> y2( y ); in test_integral_() local
98 BOOST_TEST_EQ( x2 %= x, y2 %= y ); in test_integral_()
103 boost::endian::endian_arithmetic<Order, T, sizeof(T) * 8, Align> y2( y ); in test_integral_() local
105 BOOST_TEST_EQ( x2 &= x, y2 &= y ); in test_integral_()
110 boost::endian::endian_arithmetic<Order, T, sizeof(T) * 8, Align> y2( y ); in test_integral_() local
112 BOOST_TEST_EQ( x2 |= x, y2 |= y ); in test_integral_()
117 boost::endian::endian_arithmetic<Order, T, sizeof(T) * 8, Align> y2( y ); in test_integral_() local
119 BOOST_TEST_EQ( x2 ^= x, y2 ^= y ); in test_integral_()
124 boost::endian::endian_arithmetic<Order, T, sizeof(T) * 8, Align> y2( y ); in test_integral_() local
126 BOOST_TEST_EQ( x2 <<= 1, y2 <<= 1 ); in test_integral_()
131 boost::endian::endian_arithmetic<Order, T, sizeof(T) * 8, Align> y2( y ); in test_integral_() local
133 BOOST_TEST_EQ( x2 >>= 1, y2 >>= 1 ); in test_integral_()