Home
last modified time | relevance | path

Searched refs:FP_NORMAL (Results 1 – 5 of 5) sorted by relevance

/bionic/libc/upstream-openbsd/lib/libc/gdtoa/
Dldtoa.c79 case FP_NORMAL: in __ldtoa()
Dhdtoa.c134 case FP_NORMAL: in __hdtoa()
232 case FP_NORMAL: in __hldtoa()
/bionic/libc/include/
Dmath.h42 #define FP_NORMAL 0x04 macro
63 #define fpclassify(x) __builtin_fpclassify(FP_NAN, FP_INFINITE, FP_NORMAL, FP_SUBNORMAL, FP_ZERO, x)
/bionic/tests/
Dmath_test.cpp118 ASSERT_EQ(FP_NORMAL, fpclassify(1.0f)); in TEST()
119 ASSERT_EQ(FP_NORMAL, fpclassify(1.0)); in TEST()
120 ASSERT_EQ(FP_NORMAL, fpclassify(1.0L)); in TEST()
198 ASSERT_EQ(FP_NORMAL, __fpclassify(1.0)); in TEST()
210 ASSERT_EQ(FP_NORMAL, __fpclassifyd(1.0)); in TEST()
219 ASSERT_EQ(FP_NORMAL, __fpclassifyf(1.0f)); in TEST()
228 EXPECT_EQ(FP_NORMAL, __fpclassifyl(1.0L)); in TEST()
/bionic/tests/headers/posix/
Dmath_h.c98 MACRO(FP_NORMAL); in math_h()