Searched refs:FP_NORMAL (Results 1 – 5 of 5) sorted by relevance
/bionic/libc/bionic/ |
D | fpclassify.cpp | 57 return FP_NORMAL; in __fpclassifyd() 70 return FP_NORMAL; in __fpclassifyf() 106 return (__fpclassifyd(d) == FP_NORMAL); in __isnormal() 111 return (__fpclassifyf(f) == FP_NORMAL); in __isnormalf() 135 return FP_NORMAL; in __fpclassifyl() 152 return (__fpclassifyl(ld) == FP_NORMAL); in __isnormall()
|
/bionic/libc/upstream-openbsd/lib/libc/gdtoa/ |
D | ldtoa.c | 81 case FP_NORMAL: in __ldtoa()
|
D | hdtoa.c | 134 case FP_NORMAL: in __hdtoa() 231 case FP_NORMAL: in __hldtoa()
|
/bionic/libm/include/ |
D | math.h | 60 #define FP_NORMAL 0x04 macro 64 __builtin_fpclassify(FP_NAN, FP_INFINITE, FP_NORMAL, FP_SUBNORMAL, FP_ZERO, x)
|
/bionic/tests/ |
D | math_test.cpp | 109 ASSERT_EQ(FP_NORMAL, fpclassify(1.0f)); in TEST() 110 ASSERT_EQ(FP_NORMAL, fpclassify(1.0)); in TEST() 111 ASSERT_EQ(FP_NORMAL, fpclassify(1.0L)); in TEST() 179 ASSERT_EQ(FP_NORMAL, __fpclassifyd(1.0)); in TEST() 187 ASSERT_EQ(FP_NORMAL, __fpclassifyf(1.0f)); in TEST() 195 EXPECT_EQ(FP_NORMAL, __fpclassifyl(1.0L)); in TEST()
|