Searched refs:__math_with_errno (Results 1 – 10 of 10) sorted by relevance
/picolibc-latest/newlib/libm/common/ |
D | math_err_check_uflow.c | 38 return y == 0.0 ? __math_with_errno (y, ERANGE) : y; in __math_check_uflow()
|
D | math_err_check_oflow.c | 38 return isinf (y) ? __math_with_errno (y, ERANGE) : y; in __math_check_oflow()
|
D | math_err_with_errno.c | 38 __math_with_errno (__float64 y, int e) in __math_with_errno() function
|
D | math_denorm.c | 43 return __math_with_errno(x, ERANGE); in __math_denorm()
|
D | math_err_uflow.c | 39 return __math_with_errno (y, ERANGE); in __math_uflow()
|
D | math_err_divzero.c | 39 return __math_with_errno (y, ERANGE); in __math_divzero()
|
D | math_err_may_uflow.c | 41 return __math_with_errno (y, ERANGE); in __math_may_uflow()
|
D | math_err_oflow.c | 39 return __math_with_errno (y, ERANGE); in __math_oflow()
|
D | math_err_invalid.c | 41 return __math_with_errno (x, EDOM); in __math_invalid()
|
D | math_config.h | 1007 __math_with_errno (__float64 y, int e); 1009 #define __math_with_errno(x, e) (x) macro
|