Home | History | Annotate | Download | only in tests

Lines Matching defs:__fpclassifyd

190 extern "C" int __fpclassifyd(double);
203 TEST(MATH_TEST, __fpclassifyd) {
205 #define __fpclassifyd __fpclassify
207 ASSERT_EQ(FP_INFINITE, __fpclassifyd(HUGE_VAL));
208 ASSERT_EQ(FP_INFINITE, __fpclassifyd(-HUGE_VAL));
209 ASSERT_EQ(FP_NAN, __fpclassifyd(nan("")));
210 ASSERT_EQ(FP_NORMAL, __fpclassifyd(1.0));
211 ASSERT_EQ(FP_SUBNORMAL, __fpclassifyd(double_subnormal()));
212 ASSERT_EQ(FP_ZERO, __fpclassifyd(0.0));