Home
last modified time | relevance | path

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

/external/python/cpython2/Modules/
Dcmathmodule.c30 #define CM_LARGE_DOUBLE (DBL_MAX/4.) macro
31 #define CM_SQRT_LARGE_DOUBLE (sqrt(CM_LARGE_DOUBLE))
32 #define CM_LOG_LARGE_DOUBLE (log(CM_LARGE_DOUBLE))
133 if (fabs(z.real) > CM_LARGE_DOUBLE || fabs(z.imag) > CM_LARGE_DOUBLE) { in c_acos()
174 if (fabs(z.real) > CM_LARGE_DOUBLE || fabs(z.imag) > CM_LARGE_DOUBLE) { in c_acosh()
226 if (fabs(z.real) > CM_LARGE_DOUBLE || fabs(z.imag) > CM_LARGE_DOUBLE) { in c_asinh()
536 if (ax > CM_LARGE_DOUBLE || ay > CM_LARGE_DOUBLE) { in c_log()
/external/python/cpython3/Modules/
Dcmathmodule.c64 #define CM_LARGE_DOUBLE (DBL_MAX/4.) macro
65 #define CM_SQRT_LARGE_DOUBLE (sqrt(CM_LARGE_DOUBLE))
66 #define CM_LOG_LARGE_DOUBLE (log(CM_LARGE_DOUBLE))
225 if (fabs(z.real) > CM_LARGE_DOUBLE || fabs(z.imag) > CM_LARGE_DOUBLE) { in cmath_acos_impl()
268 if (fabs(z.real) > CM_LARGE_DOUBLE || fabs(z.imag) > CM_LARGE_DOUBLE) { in cmath_acosh_impl()
323 if (fabs(z.real) > CM_LARGE_DOUBLE || fabs(z.imag) > CM_LARGE_DOUBLE) { in cmath_asinh_impl()
637 if (ax > CM_LARGE_DOUBLE || ay > CM_LARGE_DOUBLE) { in c_log()