• Home
  • Raw
  • Download

Lines Matching refs:Py_complex

31 static Py_complex c_1 = {1., 0.};
33 Py_complex
34 c_sum(Py_complex a, Py_complex b) in c_sum()
36 Py_complex r; in c_sum()
42 Py_complex
43 c_diff(Py_complex a, Py_complex b) in c_diff()
45 Py_complex r; in c_diff()
51 Py_complex
52 c_neg(Py_complex a) in c_neg()
54 Py_complex r; in c_neg()
60 Py_complex
61 c_prod(Py_complex a, Py_complex b) in c_prod()
63 Py_complex r; in c_prod()
69 Py_complex
70 c_quot(Py_complex a, Py_complex b) in c_quot()
95 Py_complex r; /* the result */ in c_quot()
127 Py_complex
128 c_pow(Py_complex a, Py_complex b) in c_pow()
130 Py_complex r; in c_pow()
157 static Py_complex
158 c_powu(Py_complex x, long n) in c_powu()
160 Py_complex r, p; in c_powu()
173 static Py_complex
174 c_powi(Py_complex x, long n) in c_powi()
176 Py_complex cn; in c_powi()
191 c_abs(Py_complex z) in c_abs()
223 complex_subtype_from_c_complex(PyTypeObject *type, Py_complex cval) in complex_subtype_from_c_complex()
234 PyComplex_FromCComplex(Py_complex cval) in PyComplex_FromCComplex()
250 Py_complex c; in complex_subtype_from_doubles()
259 Py_complex c; in PyComplex_FromDoubles()
319 Py_complex
322 Py_complex cv; in PyComplex_AsCComplex()
492 to_complex(PyObject **pobj, Py_complex *pc) in to_complex()
522 Py_complex result; in complex_add()
523 Py_complex a, b; in complex_add()
535 Py_complex result; in complex_sub()
536 Py_complex a, b; in complex_sub()
548 Py_complex result; in complex_mul()
549 Py_complex a, b; in complex_mul()
561 Py_complex quot; in complex_div()
562 Py_complex a, b; in complex_div()
579 Py_complex quot; in complex_classic_div()
580 Py_complex a, b; in complex_classic_div()
602 Py_complex div, mod; in complex_remainder()
603 Py_complex a, b; in complex_remainder()
627 Py_complex div, mod; in complex_divmod()
629 Py_complex a, b; in complex_divmod()
656 Py_complex p; in complex_pow()
657 Py_complex exponent; in complex_pow()
659 Py_complex a, b; in complex_pow()
694 Py_complex a, b; in complex_int_div()
714 Py_complex neg; in complex_neg()
757 Py_complex cval; in complex_coerce()
791 Py_complex i; in complex_richcompare()
834 Py_complex j; in complex_richcompare()
883 Py_complex c; in complex_conjugate()
897 Py_complex c = v->cval; in complex_getnewargs()
940 Py_complex c;
1139 Py_complex cr, ci; in complex_new()