Home
last modified time | relevance | path

Searched refs:can_overflow (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Modules/
Dmathmodule.c682 math_1(PyObject *arg, double (*func) (double), int can_overflow) in math_1() argument
700 errno = can_overflow ? ERANGE : EDOM; in math_1()
790 #define FUNC1(funcname, func, can_overflow, docstring) \ argument
792 return math_1(args, func, can_overflow); \
/external/python/cpython3/Modules/
Dmathmodule.c1021 int can_overflow) in math_1_to_whatever() argument
1035 if (can_overflow) in math_1_to_whatever()
1096 math_1(PyObject *arg, double (*func) (double), int can_overflow) in math_1() argument
1098 return math_1_to_whatever(arg, func, PyFloat_FromDouble, can_overflow); in math_1()
1136 #define FUNC1(funcname, func, can_overflow, docstring) \ argument
1138 return math_1(args, func, can_overflow); \