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

/bionic/libc/bionic/
H A Dfpclassify.cpp52 return ((u.bits.dbl_fracl | u.bits.dbl_frach) == 0) ? FP_ZERO : FP_SUBNORMAL;
65 return (u.bits.sng_frac == 0) ? FP_ZERO : FP_SUBNORMAL;
130 return zero_frac(u.bits) ? FP_ZERO : FP_SUBNORMAL;
/bionic/libc/upstream-openbsd/lib/libc/gdtoa/
H A Dldtoa.c90 case FP_SUBNORMAL:
H A Dhdtoa.c140 case FP_SUBNORMAL:
154 /* FP_NORMAL or FP_SUBNORMAL */
237 case FP_SUBNORMAL:
251 /* FP_NORMAL or FP_SUBNORMAL */
/bionic/tests/
H A Dmath_test.cpp109 ASSERT_EQ(FP_SUBNORMAL, fpclassify(float_subnormal()));
110 ASSERT_EQ(FP_SUBNORMAL, fpclassify(double_subnormal()));
111 ASSERT_EQ(FP_SUBNORMAL, fpclassify(ldouble_subnormal()));
174 ASSERT_EQ(FP_SUBNORMAL, __fpclassifyd(double_subnormal()));
186 ASSERT_EQ(FP_SUBNORMAL, __fpclassifyf(float_subnormal()));
198 EXPECT_EQ(FP_SUBNORMAL, __fpclassifyl(ldouble_subnormal()));
/bionic/libm/include/
H A Dmath.h83 #define FP_SUBNORMAL 0x08 macro

Completed in 151 milliseconds