Lines Matching refs:temp
739 B2DHomMatrix temp; in TEST_F() local
741 temp = maAffine; in TEST_F()
742 temp*=maAffine; in TEST_F()
743 ASSERT_TRUE(temp == affineAffineProd) << "multiply: both compact"; in TEST_F()
745 temp = maPerspective; in TEST_F()
746 temp*=maAffine; in TEST_F()
747 ASSERT_TRUE(temp == affinePerspectiveProd) << "multiply: first compact"; in TEST_F()
749 temp = maAffine; in TEST_F()
750 temp*=maPerspective; in TEST_F()
751 ASSERT_TRUE(temp == perspectiveAffineProd) << "multiply: second compact"; in TEST_F()
753 temp = maPerspective; in TEST_F()
754 temp*=maPerspective; in TEST_F()
755 ASSERT_TRUE(temp == perspectivePerspectiveProd) << "multiply: none compact"; in TEST_F()