Home
last modified time | relevance | path

Searched refs:c_abs (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython2/Include/
Dcomplexobject.h22 #define c_abs _Py_c_abs macro
30 PyAPI_FUNC(double) c_abs(Py_complex);
/external/python/cpython2/Objects/
Dcomplexobject.c191 c_abs(Py_complex z) in c_abs() function
737 result = c_abs(v->cval); in complex_abs()
/external/pffft/
Dfftpack.c65 static real c_abs(f77complex *c) { return sqrt(c->r*c->r + c->i*c->i); } in c_abs() function
3030 r1 = dcfftf, r2 = c_abs(&q1); in main()
3055 r1 = dcfftb, r2 = c_abs(&q1); in main()
3067 r1 = dcfb, r2 = c_abs(&q1); in main()
/external/python/cpython2/Modules/
Dcmathmodule.c947 r = c_abs(z); /* sets errno to ERANGE on overflow */ in cmath_polar()