• Home
  • Raw
  • Download

Lines Matching refs:Py_complex

107 static Py_complex
110 Py_complex r; in c_infj()
128 static Py_complex
131 Py_complex r; in c_nanj()
140 static Py_complex cmath_asinh_impl(PyObject *, Py_complex);
141 static Py_complex cmath_atanh_impl(PyObject *, Py_complex);
142 static Py_complex cmath_cosh_impl(PyObject *, Py_complex);
143 static Py_complex cmath_sinh_impl(PyObject *, Py_complex);
144 static Py_complex cmath_sqrt_impl(PyObject *, Py_complex);
145 static Py_complex cmath_tanh_impl(PyObject *, Py_complex);
213 static Py_complex acos_special_values[7][7];
224 static Py_complex
225 cmath_acos_impl(PyObject *module, Py_complex z) in cmath_acos_impl()
228 Py_complex s1, s2, r; in cmath_acos_impl()
259 static Py_complex acosh_special_values[7][7];
267 static Py_complex
268 cmath_acosh_impl(PyObject *module, Py_complex z) in cmath_acosh_impl()
271 Py_complex s1, s2, r; in cmath_acosh_impl()
299 static Py_complex
300 cmath_asin_impl(PyObject *module, Py_complex z) in cmath_asin_impl()
304 Py_complex s, r; in cmath_asin_impl()
314 static Py_complex asinh_special_values[7][7];
322 static Py_complex
323 cmath_asinh_impl(PyObject *module, Py_complex z) in cmath_asinh_impl()
326 Py_complex s1, s2, r; in cmath_asinh_impl()
360 static Py_complex
361 cmath_atan_impl(PyObject *module, Py_complex z) in cmath_atan_impl()
365 Py_complex s, r; in cmath_atan_impl()
377 c_atan2(Py_complex z) in c_atan2()
405 static Py_complex atanh_special_values[7][7];
413 static Py_complex
414 cmath_atanh_impl(PyObject *module, Py_complex z) in cmath_atanh_impl()
417 Py_complex r; in cmath_atanh_impl()
468 static Py_complex
469 cmath_cos_impl(PyObject *module, Py_complex z) in cmath_cos_impl()
473 Py_complex r; in cmath_cos_impl()
482 static Py_complex cosh_special_values[7][7];
490 static Py_complex
491 cmath_cosh_impl(PyObject *module, Py_complex z) in cmath_cosh_impl()
494 Py_complex r; in cmath_cosh_impl()
544 static Py_complex exp_special_values[7][7];
552 static Py_complex
553 cmath_exp_impl(PyObject *module, Py_complex z) in cmath_exp_impl()
556 Py_complex r; in cmath_exp_impl()
603 static Py_complex log_special_values[7][7];
605 static Py_complex
606 c_log(Py_complex z) in c_log()
636 Py_complex r; in c_log()
681 static Py_complex
682 cmath_log10_impl(PyObject *module, Py_complex z) in cmath_log10_impl()
685 Py_complex r; in cmath_log10_impl()
703 static Py_complex
704 cmath_sin_impl(PyObject *module, Py_complex z) in cmath_sin_impl()
708 Py_complex s, r; in cmath_sin_impl()
719 static Py_complex sinh_special_values[7][7];
727 static Py_complex
728 cmath_sinh_impl(PyObject *module, Py_complex z) in cmath_sinh_impl()
731 Py_complex r; in cmath_sinh_impl()
778 static Py_complex sqrt_special_values[7][7];
786 static Py_complex
787 cmath_sqrt_impl(PyObject *module, Py_complex z) in cmath_sqrt_impl()
817 Py_complex r; in cmath_sqrt_impl()
861 static Py_complex
862 cmath_tan_impl(PyObject *module, Py_complex z) in cmath_tan_impl()
866 Py_complex s, r; in cmath_tan_impl()
877 static Py_complex tanh_special_values[7][7];
885 static Py_complex
886 cmath_tanh_impl(PyObject *module, Py_complex z) in cmath_tanh_impl()
901 Py_complex r; in cmath_tanh_impl()
964 cmath_log_impl(PyObject *module, Py_complex x, PyObject *y_obj) in cmath_log_impl()
967 Py_complex y; in cmath_log_impl()
1010 cmath_phase_impl(PyObject *module, Py_complex z) in cmath_phase_impl()
1035 cmath_polar_impl(PyObject *module, Py_complex z) in cmath_polar_impl()
1060 static Py_complex rect_special_values[7][7];
1076 Py_complex z; in cmath_rect_impl()
1132 cmath_isfinite_impl(PyObject *module, Py_complex z) in cmath_isfinite_impl()
1145 cmath_isnan_impl(PyObject *module, Py_complex z) in cmath_isnan_impl()
1158 cmath_isinf_impl(PyObject *module, Py_complex z) in cmath_isinf_impl()
1190 cmath_isclose_impl(PyObject *module, Py_complex a, Py_complex b, in cmath_isclose_impl()
1297 #define INIT_SPECIAL_VALUES(NAME, BODY) { Py_complex* p = (Py_complex*)NAME; BODY } in cmath_exec()