Home
last modified time | relevance | path

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

/bionic/libc/bionic/
Dfpclassify.cpp52 return ((u.bits.dbl_fracl | u.bits.dbl_frach) == 0) ? FP_ZERO : FP_SUBNORMAL; in __fpclassifyd()
65 return (u.bits.sng_frac == 0) ? FP_ZERO : FP_SUBNORMAL; in __fpclassifyf()
130 return zero_frac(u.bits) ? FP_ZERO : FP_SUBNORMAL; in __fpclassifyl()
/bionic/libc/upstream-openbsd/lib/libc/gdtoa/
Dldtoa.c90 case FP_SUBNORMAL: in __ldtoa()
Dhdtoa.c140 case FP_SUBNORMAL: in __hdtoa()
237 case FP_SUBNORMAL: in __hldtoa()
/bionic/tests/
Dmath_test.cpp113 ASSERT_EQ(FP_SUBNORMAL, fpclassify(float_subnormal())); in TEST()
114 ASSERT_EQ(FP_SUBNORMAL, fpclassify(double_subnormal())); in TEST()
115 ASSERT_EQ(FP_SUBNORMAL, fpclassify(ldouble_subnormal())); in TEST()
180 ASSERT_EQ(FP_SUBNORMAL, __fpclassifyd(double_subnormal())); in TEST()
188 ASSERT_EQ(FP_SUBNORMAL, __fpclassifyf(float_subnormal())); in TEST()
196 EXPECT_EQ(FP_SUBNORMAL, __fpclassifyl(ldouble_subnormal())); in TEST()
/bionic/libm/include/
Dmath.h83 #define FP_SUBNORMAL 0x08 macro