Home
last modified time | relevance | path

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

/external/python/cpython2/Include/
Dcomplexobject.h20 #define c_quot _Py_c_quot macro
28 PyAPI_FUNC(Py_complex) c_quot(Py_complex, Py_complex);
/external/python/cpython2/Objects/
Dcomplexobject.c70 c_quot(Py_complex a, Py_complex b) in c_quot() function
186 return c_quot(c_1,c_powu(x,-n)); in c_powi()
567 quot = c_quot(a, b); in complex_div()
590 quot = c_quot(a, b); in complex_classic_div()
611 div = c_quot(a, b); /* The raw divisor value. */ in complex_remainder()
637 div = c_quot(a, b); /* The raw divisor value. */ in complex_divmod()
/external/python/cpython2/Modules/
Dcmathmodule.c845 x = c_quot(x, y); in cmath_log()