Home | History | Annotate | Download | only in Modules

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