Home | History | Annotate | Download | only in python2.7

Lines Matching full:py_complex

12 } Py_complex;
24 PyAPI_FUNC(Py_complex) c_sum(Py_complex, Py_complex);
25 PyAPI_FUNC(Py_complex) c_diff(Py_complex, Py_complex);
26 PyAPI_FUNC(Py_complex) c_neg(Py_complex);
27 PyAPI_FUNC(Py_complex) c_prod(Py_complex, Py_complex);
28 PyAPI_FUNC(Py_complex) c_quot(Py_complex, Py_complex);
29 PyAPI_FUNC(Py_complex) c_pow(Py_complex, Py_complex);
30 PyAPI_FUNC(double) c_abs(Py_complex);
42 Py_complex cval;
50 PyAPI_FUNC(PyObject *) PyComplex_FromCComplex(Py_complex);
55 PyAPI_FUNC(Py_complex) PyComplex_AsCComplex(PyObject *op);