Home | History | Annotate | Download | only in numerics

Lines Matching full:too_large

777   CheckedNumeric<int> too_large = std::numeric_limits<int>::max();
778 EXPECT_TRUE(too_large.IsValid());
779 too_large += d;
780 EXPECT_FALSE(too_large.IsValid());
781 too_large -= d;
782 EXPECT_FALSE(too_large.IsValid());
783 too_large /= d;
784 EXPECT_FALSE(too_large.IsValid());