Lines Matching refs:Py_complex
24 type = "Py_complex"
100 static Py_complex
103 Py_complex r;
121 static Py_complex
124 Py_complex r;
133 static Py_complex cmath_asinh_impl(PyObject *, Py_complex);
134 static Py_complex cmath_atanh_impl(PyObject *, Py_complex);
135 static Py_complex cmath_cosh_impl(PyObject *, Py_complex);
136 static Py_complex cmath_sinh_impl(PyObject *, Py_complex);
137 static Py_complex cmath_sqrt_impl(PyObject *, Py_complex);
138 static Py_complex cmath_tanh_impl(PyObject *, Py_complex);
206 static Py_complex acos_special_values[7][7];
217 static Py_complex
218 cmath_acos_impl(PyObject *module, Py_complex z)
221 Py_complex s1, s2, r;
252 static Py_complex acosh_special_values[7][7];
260 static Py_complex
261 cmath_acosh_impl(PyObject *module, Py_complex z)
264 Py_complex s1, s2, r;
292 static Py_complex
293 cmath_asin_impl(PyObject *module, Py_complex z)
297 Py_complex s, r;
307 static Py_complex asinh_special_values[7][7];
315 static Py_complex
316 cmath_asinh_impl(PyObject *module, Py_complex z)
319 Py_complex s1, s2, r;
353 static Py_complex
354 cmath_atan_impl(PyObject *module, Py_complex z)
358 Py_complex s, r;
370 c_atan2(Py_complex z)
398 static Py_complex atanh_special_values[7][7];
406 static Py_complex
407 cmath_atanh_impl(PyObject *module, Py_complex z)
410 Py_complex r;
461 static Py_complex
462 cmath_cos_impl(PyObject *module, Py_complex z)
466 Py_complex r;
475 static Py_complex cosh_special_values[7][7];
483 static Py_complex
484 cmath_cosh_impl(PyObject *module, Py_complex z)
487 Py_complex r;
537 static Py_complex exp_special_values[7][7];
545 static Py_complex
546 cmath_exp_impl(PyObject *module, Py_complex z)
549 Py_complex r;
596 static Py_complex log_special_values[7][7];
598 static Py_complex
599 c_log(Py_complex z)
629 Py_complex r;
674 static Py_complex
675 cmath_log10_impl(PyObject *module, Py_complex z)
678 Py_complex r;
696 static Py_complex
697 cmath_sin_impl(PyObject *module, Py_complex z)
701 Py_complex s, r;
712 static Py_complex sinh_special_values[7][7];
720 static Py_complex
721 cmath_sinh_impl(PyObject *module, Py_complex z)
724 Py_complex r;
771 static Py_complex sqrt_special_values[7][7];
779 static Py_complex
780 cmath_sqrt_impl(PyObject *module, Py_complex z)
810 Py_complex r;
854 static Py_complex
855 cmath_tan_impl(PyObject *module, Py_complex z)
859 Py_complex s, r;
870 static Py_complex tanh_special_values[7][7];
878 static Py_complex
879 cmath_tanh_impl(PyObject *module, Py_complex z)
894 Py_complex r;
947 x: Py_complex
957 cmath_log_impl(PyObject *module, Py_complex x, PyObject *y_obj)
960 Py_complex y;
998 z: Py_complex
1005 cmath_phase_impl(PyObject *module, Py_complex z)
1023 z: Py_complex
1032 cmath_polar_impl(PyObject *module, Py_complex z)
1059 static Py_complex rect_special_values[7][7];
1075 Py_complex z;
1133 cmath_isfinite_impl(PyObject *module, Py_complex z)
1146 cmath_isnan_impl(PyObject *module, Py_complex z)
1159 cmath_isinf_impl(PyObject *module, Py_complex z)
1169 a: Py_complex
1170 b: Py_complex
1191 cmath_isclose_impl(PyObject *module, Py_complex a, Py_complex b,
1300 #define INIT_SPECIAL_VALUES(NAME, BODY) { Py_complex* p = (Py_complex*)NAME; BODY }