Home | History | Annotate | Download | only in c-api

Lines Matching full:py_complex

24 .. c:type:: Py_complex
34 } Py_complex;
37 .. c:function:: Py_complex _Py_c_sum(Py_complex left, Py_complex right)
39 Return the sum of two complex numbers, using the C :c:type:`Py_complex`
43 .. c:function:: Py_complex _Py_c_diff(Py_complex left, Py_complex right)
46 :c:type:`Py_complex` representation.
49 .. c:function:: Py_complex _Py_c_neg(Py_complex complex)
52 :c:type:`Py_complex` representation.
55 .. c:function:: Py_complex _Py_c_prod(Py_complex left, Py_complex right)
57 Return the product of two complex numbers, using the C :c:type:`Py_complex`
61 .. c:function:: Py_complex _Py_c_quot(Py_complex dividend, Py_complex divisor)
63 Return the quotient of two complex numbers, using the C :c:type:`Py_complex`
70 .. c:function:: Py_complex _Py_c_pow(Py_complex num, Py_complex exp)
72 Return the exponentiation of *num* by *exp*, using the C :c:type:`Py_complex`
111 .. c:function:: PyObject* PyComplex_FromCComplex(Py_complex v)
113 Create a new Python complex number object from a C :c:type:`Py_complex` value.
131 .. c:function:: Py_complex PyComplex_AsCComplex(PyObject *op)
133 Return the :c:type:`Py_complex` value of the complex number *op*.