Home
last modified time | relevance | path

Searched refs:_Py_c_abs (Results 1 – 3 of 3) sorted by relevance

/third_party/python/Include/
Dcomplexobject.h23 PyAPI_FUNC(double) _Py_c_abs(Py_complex);
/third_party/python/Objects/
Dcomplexobject.c183 _Py_c_abs(Py_complex z) in _Py_c_abs() function
567 result = _Py_c_abs(v->cval); in complex_abs()
/third_party/python/Modules/
Dcmathmodule.c1035 r = _Py_c_abs(z); /* sets errno to ERANGE on overflow */ in cmath_polar_impl()
1219 diff = _Py_c_abs(_Py_c_diff(a, b)); in cmath_isclose_impl()
1221 return (((diff <= rel_tol * _Py_c_abs(b)) || in cmath_isclose_impl()
1222 (diff <= rel_tol * _Py_c_abs(a))) || in cmath_isclose_impl()