Home
last modified time | relevance | path

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

/bionic/libc/upstream-openbsd/lib/libc/gdtoa/
Dldtoa.c88 case FP_SUBNORMAL: in __ldtoa()
Dhdtoa.c140 case FP_SUBNORMAL: in __hdtoa()
239 case FP_SUBNORMAL: in __hldtoa()
/bionic/libc/include/
Dmath.h41 #define FP_SUBNORMAL 0x08 macro
61 #define fpclassify(x) __builtin_fpclassify(FP_NAN, FP_INFINITE, FP_NORMAL, FP_SUBNORMAL, FP_ZERO, x)
/bionic/tests/
Dmath_test.cpp122 ASSERT_EQ(FP_SUBNORMAL, fpclassify(float_subnormal())); in TEST()
123 ASSERT_EQ(FP_SUBNORMAL, fpclassify(double_subnormal())); in TEST()
124 ASSERT_EQ(FP_SUBNORMAL, fpclassify(ldouble_subnormal())); in TEST()
199 ASSERT_EQ(FP_SUBNORMAL, __fpclassify(double_subnormal())); in TEST()
211 ASSERT_EQ(FP_SUBNORMAL, __fpclassifyd(double_subnormal())); in TEST()
220 ASSERT_EQ(FP_SUBNORMAL, __fpclassifyf(float_subnormal())); in TEST()
229 EXPECT_EQ(FP_SUBNORMAL, __fpclassifyl(ldouble_subnormal())); in TEST()
/bionic/tests/headers/posix/
Dmath_h.c99 MACRO(FP_SUBNORMAL); in math_h()