Lines Matching refs:PyAPI_FUNC
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);
50 PyAPI_FUNC(PyObject *) PyComplex_FromCComplex(Py_complex);
51 PyAPI_FUNC(PyObject *) PyComplex_FromDoubles(double real, double imag);
53 PyAPI_FUNC(double) PyComplex_RealAsDouble(PyObject *op);
54 PyAPI_FUNC(double) PyComplex_ImagAsDouble(PyObject *op);
55 PyAPI_FUNC(Py_complex) PyComplex_AsCComplex(PyObject *op);
59 PyAPI_FUNC(PyObject *) _PyComplex_FormatAdvanced(PyObject *obj,