Home
last modified time | relevance | path

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

/picolibc-latest/newlib/libm/common/
Dmath_err_check_uflow.c38 return y == 0.0 ? __math_with_errno (y, ERANGE) : y; in __math_check_uflow()
Dmath_err_check_oflow.c38 return isinf (y) ? __math_with_errno (y, ERANGE) : y; in __math_check_oflow()
Dmath_err_with_errno.c38 __math_with_errno (__float64 y, int e) in __math_with_errno() function
Dmath_denorm.c43 return __math_with_errno(x, ERANGE); in __math_denorm()
Dmath_err_uflow.c39 return __math_with_errno (y, ERANGE); in __math_uflow()
Dmath_err_divzero.c39 return __math_with_errno (y, ERANGE); in __math_divzero()
Dmath_err_may_uflow.c41 return __math_with_errno (y, ERANGE); in __math_may_uflow()
Dmath_err_oflow.c39 return __math_with_errno (y, ERANGE); in __math_oflow()
Dmath_err_invalid.c41 return __math_with_errno (x, EDOM); in __math_invalid()
Dmath_config.h1007 __math_with_errno (__float64 y, int e);
1009 #define __math_with_errno(x, e) (x) macro