• Home
  • Raw
  • Download

Lines Matching refs:Py_complex

25 static Py_complex c_1 = {1., 0.};
27 Py_complex
28 _Py_c_sum(Py_complex a, Py_complex b) in _Py_c_sum()
30 Py_complex r; in _Py_c_sum()
36 Py_complex
37 _Py_c_diff(Py_complex a, Py_complex b) in _Py_c_diff()
39 Py_complex r; in _Py_c_diff()
45 Py_complex
46 _Py_c_neg(Py_complex a) in _Py_c_neg()
48 Py_complex r; in _Py_c_neg()
54 Py_complex
55 _Py_c_prod(Py_complex a, Py_complex b) in _Py_c_prod()
57 Py_complex r; in _Py_c_prod()
67 Py_complex
68 _Py_c_quot(Py_complex a, Py_complex b) in _Py_c_quot()
93 Py_complex r; /* the result */ in _Py_c_quot()
128 Py_complex
129 _Py_c_pow(Py_complex a, Py_complex b) in _Py_c_pow()
131 Py_complex r; in _Py_c_pow()
158 static Py_complex
159 c_powu(Py_complex x, long n) in c_powu()
161 Py_complex r, p; in c_powu()
174 static Py_complex
175 c_powi(Py_complex x, long n) in c_powi()
185 _Py_c_abs(Py_complex z) in _Py_c_abs()
217 complex_subtype_from_c_complex(PyTypeObject *type, Py_complex cval) in complex_subtype_from_c_complex()
228 PyComplex_FromCComplex(Py_complex cval) in PyComplex_FromCComplex()
243 Py_complex c; in complex_subtype_from_doubles()
252 Py_complex c; in PyComplex_FromDoubles()
313 Py_complex
316 Py_complex cv; in PyComplex_AsCComplex()
435 to_complex(PyObject **pobj, Py_complex *pc) in to_complex()
461 Py_complex result; in complex_add()
462 Py_complex a, b; in complex_add()
472 Py_complex result; in complex_sub()
473 Py_complex a, b; in complex_sub()
483 Py_complex result; in complex_mul()
484 Py_complex a, b; in complex_mul()
494 Py_complex quot; in complex_div()
495 Py_complex a, b; in complex_div()
510 Py_complex p; in complex_pow()
511 Py_complex a, b; in complex_pow()
546 Py_complex neg; in complex_neg()
588 Py_complex i; in complex_richcompare()
620 Py_complex j; in complex_richcompare()
651 Py_complex c = self->cval; in complex_conjugate_impl()
665 Py_complex c = self->cval; in complex___getnewargs___impl()
903 Py_complex cr, ci; in complex_new_impl()