• Home
  • Raw
  • Download

Lines Matching refs:Py_complex

100 static Py_complex
103 Py_complex r; in c_infj()
121 static Py_complex
124 Py_complex r; in c_nanj()
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) in cmath_acos_impl()
221 Py_complex s1, s2, r; in cmath_acos_impl()
252 static Py_complex acosh_special_values[7][7];
260 static Py_complex
261 cmath_acosh_impl(PyObject *module, Py_complex z) in cmath_acosh_impl()
264 Py_complex s1, s2, r; in cmath_acosh_impl()
292 static Py_complex
293 cmath_asin_impl(PyObject *module, Py_complex z) in cmath_asin_impl()
297 Py_complex s, r; in cmath_asin_impl()
307 static Py_complex asinh_special_values[7][7];
315 static Py_complex
316 cmath_asinh_impl(PyObject *module, Py_complex z) in cmath_asinh_impl()
319 Py_complex s1, s2, r; in cmath_asinh_impl()
353 static Py_complex
354 cmath_atan_impl(PyObject *module, Py_complex z) in cmath_atan_impl()
358 Py_complex s, r; in cmath_atan_impl()
370 c_atan2(Py_complex z) in c_atan2()
398 static Py_complex atanh_special_values[7][7];
406 static Py_complex
407 cmath_atanh_impl(PyObject *module, Py_complex z) in cmath_atanh_impl()
410 Py_complex r; in cmath_atanh_impl()
461 static Py_complex
462 cmath_cos_impl(PyObject *module, Py_complex z) in cmath_cos_impl()
466 Py_complex r; in cmath_cos_impl()
475 static Py_complex cosh_special_values[7][7];
483 static Py_complex
484 cmath_cosh_impl(PyObject *module, Py_complex z) in cmath_cosh_impl()
487 Py_complex r; in cmath_cosh_impl()
537 static Py_complex exp_special_values[7][7];
545 static Py_complex
546 cmath_exp_impl(PyObject *module, Py_complex z) in cmath_exp_impl()
549 Py_complex r; in cmath_exp_impl()
596 static Py_complex log_special_values[7][7];
598 static Py_complex
599 c_log(Py_complex z) in c_log()
629 Py_complex r; in c_log()
674 static Py_complex
675 cmath_log10_impl(PyObject *module, Py_complex z) in cmath_log10_impl()
678 Py_complex r; in cmath_log10_impl()
696 static Py_complex
697 cmath_sin_impl(PyObject *module, Py_complex z) in cmath_sin_impl()
701 Py_complex s, r; in cmath_sin_impl()
712 static Py_complex sinh_special_values[7][7];
720 static Py_complex
721 cmath_sinh_impl(PyObject *module, Py_complex z) in cmath_sinh_impl()
724 Py_complex r; in cmath_sinh_impl()
771 static Py_complex sqrt_special_values[7][7];
779 static Py_complex
780 cmath_sqrt_impl(PyObject *module, Py_complex z) in cmath_sqrt_impl()
810 Py_complex r; in cmath_sqrt_impl()
854 static Py_complex
855 cmath_tan_impl(PyObject *module, Py_complex z) in cmath_tan_impl()
859 Py_complex s, r; in cmath_tan_impl()
870 static Py_complex tanh_special_values[7][7];
878 static Py_complex
879 cmath_tanh_impl(PyObject *module, Py_complex z) in cmath_tanh_impl()
894 Py_complex r; in cmath_tanh_impl()
957 cmath_log_impl(PyObject *module, Py_complex x, PyObject *y_obj) in cmath_log_impl()
960 Py_complex y; in cmath_log_impl()
1003 cmath_phase_impl(PyObject *module, Py_complex z) in cmath_phase_impl()
1028 cmath_polar_impl(PyObject *module, Py_complex z) in cmath_polar_impl()
1053 static Py_complex rect_special_values[7][7];
1069 Py_complex z; in cmath_rect_impl()
1125 cmath_isfinite_impl(PyObject *module, Py_complex z) in cmath_isfinite_impl()
1138 cmath_isnan_impl(PyObject *module, Py_complex z) in cmath_isnan_impl()
1151 cmath_isinf_impl(PyObject *module, Py_complex z) in cmath_isinf_impl()
1183 cmath_isclose_impl(PyObject *module, Py_complex a, Py_complex b, in cmath_isclose_impl()
1290 #define INIT_SPECIAL_VALUES(NAME, BODY) { Py_complex* p = (Py_complex*)NAME; BODY } in cmath_exec()