Lines Matching defs:MaxValue
585 auto MaxValue = std::numeric_limits<TypeParam>::max();
586 EXPECT_TRUE(AddOverflow<TypeParam>(MaxValue, MaxValue, Result));
592 auto MaxValue = std::numeric_limits<TypeParam>::max();
593 EXPECT_TRUE(AddOverflow<TypeParam>(MaxValue, TypeParam(1), Result));
633 auto MaxValue = std::numeric_limits<TypeParam>::max();
635 EXPECT_TRUE(SubOverflow<TypeParam>(MaxValue, MinValue, Result));
641 auto MaxValue = std::numeric_limits<TypeParam>::max();
643 EXPECT_TRUE(SubOverflow<TypeParam>(MinValue, MaxValue, Result));
661 auto MaxValue = std::numeric_limits<TypeParam>::max();
664 EXPECT_EQ(Result, MaxValue);
677 auto MaxValue = std::numeric_limits<TypeParam>::max();
680 EXPECT_TRUE(MulOverflow<TypeParam>(MaxValue, MaxValue, Result));