reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
570 EXPECT_FALSE(MulOverflow<TypeParam>(1, 2, Result)); 571 EXPECT_EQ(Result, 2); 572 EXPECT_FALSE(MulOverflow<TypeParam>(-1, 3, Result)); 573 EXPECT_EQ(Result, -3); 574 EXPECT_FALSE(MulOverflow<TypeParam>(4, -2, Result)); 575 EXPECT_EQ(Result, -8); 576 EXPECT_FALSE(MulOverflow<TypeParam>(-6, -5, Result)); 577 EXPECT_EQ(Result, 30);