Home | History | Annotate | Download | only in tests

Lines Matching refs:isnormal

145 TEST(math, isnormal) {
146 ASSERT_TRUE(isnormal(123.0f));
147 ASSERT_TRUE(isnormal(123.0));
148 ASSERT_TRUE(isnormal(123.0L));
149 ASSERT_FALSE(isnormal(float_subnormal()));
150 ASSERT_FALSE(isnormal(double_subnormal()));
151 ASSERT_FALSE(isnormal(ldouble_subnormal()));