Home
last modified time | relevance | path

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

/picolibc-latest/newlib/libm/common/
Dsf_scalbln.c38 return __math_uflowf(ix<0); /*underflow*/ in scalblnf()
47 return __math_uflowf(ix < 0); /*underflow*/ in scalblnf()
Dsf_scalbn.c45 return __math_uflowf(ix<0); /*underflow*/ in scalbnf()
57 return __math_uflowf(ix<0); /*underflow*/ in scalbnf()
Dmath_errf_uflowf.c35 __math_uflowf (uint32_t sign) in __math_uflowf() function
Dsf_exp2.c77 return __math_uflowf (0); in exp2f()
Dsf_exp.c77 return __math_uflowf (0); in expf()
Dsf_pow.c237 return __math_uflowf (sign_bias); in powf()
Dmath_config.h902 HIDDEN float __math_uflowf (uint32_t);
/picolibc-latest/newlib/libm/math/
Dsf_pow.c156 return (hy < 0) ? __math_oflowf(0) : __math_uflowf(0); in powf()
158 return (hy > 0) ? __math_oflowf(0) : __math_uflowf(0); in powf()
254 return __math_uflowf(s < 0); /* underflow */ in powf()
257 return __math_uflowf(s < 0); /* underflow */ in powf()
Dsf_exp.c59 return __math_uflowf(0); /* underflow */ in expf()
Dsf_erf.c246 return __math_uflowf(0); in erfcf()