• Home
  • Raw
  • Download

Lines Matching refs:Py_complex

23 static Py_complex c_1 = {1., 0.};
25 Py_complex
26 _Py_c_sum(Py_complex a, Py_complex b) in _Py_c_sum()
28 Py_complex r; in _Py_c_sum()
34 Py_complex
35 _Py_c_diff(Py_complex a, Py_complex b) in _Py_c_diff()
37 Py_complex r; in _Py_c_diff()
43 Py_complex
44 _Py_c_neg(Py_complex a) in _Py_c_neg()
46 Py_complex r; in _Py_c_neg()
52 Py_complex
53 _Py_c_prod(Py_complex a, Py_complex b) in _Py_c_prod()
55 Py_complex r; in _Py_c_prod()
65 Py_complex
66 _Py_c_quot(Py_complex a, Py_complex b) in _Py_c_quot()
91 Py_complex r; /* the result */ in _Py_c_quot()
126 Py_complex
127 _Py_c_pow(Py_complex a, Py_complex b) in _Py_c_pow()
129 Py_complex r; in _Py_c_pow()
156 static Py_complex
157 c_powu(Py_complex x, long n) in c_powu()
159 Py_complex r, p; in c_powu()
172 static Py_complex
173 c_powi(Py_complex x, long n) in c_powi()
183 _Py_c_abs(Py_complex z) in _Py_c_abs()
215 complex_subtype_from_c_complex(PyTypeObject *type, Py_complex cval) in complex_subtype_from_c_complex()
226 PyComplex_FromCComplex(Py_complex cval) in PyComplex_FromCComplex()
241 Py_complex c; in complex_subtype_from_doubles()
250 Py_complex c; in PyComplex_FromDoubles()
312 Py_complex
315 Py_complex cv; in PyComplex_AsCComplex()
434 to_complex(PyObject **pobj, Py_complex *pc) in to_complex()
460 Py_complex result; in complex_add()
461 Py_complex a, b; in complex_add()
471 Py_complex result; in complex_sub()
472 Py_complex a, b; in complex_sub()
482 Py_complex result; in complex_mul()
483 Py_complex a, b; in complex_mul()
493 Py_complex quot; in complex_div()
494 Py_complex a, b; in complex_div()
509 Py_complex p; in complex_pow()
510 Py_complex a, b; in complex_pow()
545 Py_complex neg; in complex_neg()
587 Py_complex i; in complex_richcompare()
619 Py_complex j; in complex_richcompare()
650 Py_complex c = self->cval; in complex_conjugate_impl()
664 Py_complex c = self->cval; in complex___getnewargs___impl()
881 Py_complex cr, ci; in complex_new_impl()