Home
last modified time | relevance | path

Searched refs:__math_uflow (Results 1 – 10 of 10) sorted by relevance

/picolibc-latest/newlib/libm/common/
Ds_scalbln.c40 if (n< -50000) return __math_uflow(hx < 0); /*underflow*/ in scalbln64()
49 return __math_uflow(hx < 0); /*underflow*/ in scalbln64()
Ds_scalbn.c84 if (n< -50000) return __math_uflow(hx<0); /*underflow*/ in scalbn64()
97 return __math_uflow(hx<0); /*underflow*/ in scalbn64()
Dmath_err_uflow.c36 __math_uflow (uint32_t sign) in __math_uflow() function
Dexp2.c122 return __math_uflow (0); in exp2()
Dpow.c221 return __math_uflow (sign_bias); in exp_inline()
372 : __math_uflow (0); in pow()
Dexp.c122 return __math_uflow (0); in exp()
Dmath_config.h961 HIDDEN __float64 __math_uflow (uint32_t);
/picolibc-latest/newlib/libm/math/
Ds_pow.c213 return (hy < 0) ? __math_oflow(0) : __math_uflow(0); in pow64()
215 return (hy > 0) ? __math_oflow(0) : __math_uflow(0); in pow64()
220 return (hy < 0) ? __math_oflow(sign) : __math_uflow(sign); in pow64()
224 return (hy > 0) ? __math_oflow(sign) : __math_uflow(sign); in pow64()
315 return __math_uflow(s < 0); /* underflow */ in pow64()
318 return __math_uflow(s < 0); /* underflow */ in pow64()
Ds_exp.c125 return __math_uflow(0); /* underflow */ in exp64()
Ds_erf.c383 return __math_uflow(0); in _MATH_ALIAS_d_d()