Lines Matching refs:Py_complex
51 static Py_complex c_asinh(Py_complex);
52 static Py_complex c_atanh(Py_complex);
53 static Py_complex c_cosh(Py_complex);
54 static Py_complex c_sinh(Py_complex);
55 static Py_complex c_sqrt(Py_complex);
56 static Py_complex c_tanh(Py_complex);
124 static Py_complex acos_special_values[7][7];
126 static Py_complex
127 c_acos(Py_complex z) in c_acos()
129 Py_complex s1, s2, r; in c_acos()
165 static Py_complex acosh_special_values[7][7];
167 static Py_complex
168 c_acosh(Py_complex z) in c_acosh()
170 Py_complex s1, s2, r; in c_acosh()
198 static Py_complex
199 c_asin(Py_complex z) in c_asin()
202 Py_complex s, r; in c_asin()
217 static Py_complex asinh_special_values[7][7];
219 static Py_complex
220 c_asinh(Py_complex z) in c_asinh()
222 Py_complex s1, s2, r; in c_asinh()
255 static Py_complex
256 c_atan(Py_complex z) in c_atan()
259 Py_complex s, r; in c_atan()
271 c_atan2(Py_complex z) in c_atan2()
304 static Py_complex atanh_special_values[7][7];
306 static Py_complex
307 c_atanh(Py_complex z) in c_atanh()
309 Py_complex r; in c_atanh()
359 static Py_complex
360 c_cos(Py_complex z) in c_cos()
363 Py_complex r; in c_cos()
377 static Py_complex cosh_special_values[7][7];
379 static Py_complex
380 c_cosh(Py_complex z) in c_cosh()
382 Py_complex r; in c_cosh()
437 static Py_complex exp_special_values[7][7];
439 static Py_complex
440 c_exp(Py_complex z) in c_exp()
442 Py_complex r; in c_exp()
495 static Py_complex log_special_values[7][7];
497 static Py_complex
498 c_log(Py_complex z) in c_log()
528 Py_complex r; in c_log()
567 static Py_complex
568 c_log10(Py_complex z) in c_log10()
570 Py_complex r; in c_log10()
587 static Py_complex
588 c_sin(Py_complex z) in c_sin()
591 Py_complex s, r; in c_sin()
607 static Py_complex sinh_special_values[7][7];
609 static Py_complex
610 c_sinh(Py_complex z) in c_sinh()
612 Py_complex r; in c_sinh()
664 static Py_complex sqrt_special_values[7][7];
666 static Py_complex
667 c_sqrt(Py_complex z) in c_sqrt()
696 Py_complex r; in c_sqrt()
739 static Py_complex
740 c_tan(Py_complex z) in c_tan()
743 Py_complex s, r; in c_tan()
759 static Py_complex tanh_special_values[7][7];
761 static Py_complex
762 c_tanh(Py_complex z) in c_tanh()
776 Py_complex r; in c_tanh()
834 Py_complex x; in cmath_log()
835 Py_complex y; in cmath_log()
873 math_1(PyObject *args, Py_complex (*func)(Py_complex)) in math_1() argument
875 Py_complex x,r ; in math_1()
919 Py_complex z; in FUNC1()
940 Py_complex z; in cmath_polar()
971 static Py_complex rect_special_values[7][7];
976 Py_complex z; in cmath_rect()
1037 Py_complex z; in cmath_isnan()
1050 Py_complex z; in cmath_isinf()
1106 #define INIT_SPECIAL_VALUES(NAME, BODY) { Py_complex* p = (Py_complex*)NAME; BODY } in initcmath()