Lines Matching defs:module

6 "acos($module, z, /)\n"
15 cmath_acos_impl(PyObject *module, Py_complex z);
18 cmath_acos(PyObject *module, PyObject *arg)
30 _return_value = cmath_acos_impl(module, z);
48 "acosh($module, z, /)\n"
57 cmath_acosh_impl(PyObject *module, Py_complex z);
60 cmath_acosh(PyObject *module, PyObject *arg)
72 _return_value = cmath_acosh_impl(module, z);
90 "asin($module, z, /)\n"
99 cmath_asin_impl(PyObject *module, Py_complex z);
102 cmath_asin(PyObject *module, PyObject *arg)
114 _return_value = cmath_asin_impl(module, z);
132 "asinh($module, z, /)\n"
141 cmath_asinh_impl(PyObject *module, Py_complex z);
144 cmath_asinh(PyObject *module, PyObject *arg)
156 _return_value = cmath_asinh_impl(module, z);
174 "atan($module, z, /)\n"
183 cmath_atan_impl(PyObject *module, Py_complex z);
186 cmath_atan(PyObject *module, PyObject *arg)
198 _return_value = cmath_atan_impl(module, z);
216 "atanh($module, z, /)\n"
225 cmath_atanh_impl(PyObject *module, Py_complex z);
228 cmath_atanh(PyObject *module, PyObject *arg)
240 _return_value = cmath_atanh_impl(module, z);
258 "cos($module, z, /)\n"
267 cmath_cos_impl(PyObject *module, Py_complex z);
270 cmath_cos(PyObject *module, PyObject *arg)
282 _return_value = cmath_cos_impl(module, z);
300 "cosh($module, z, /)\n"
309 cmath_cosh_impl(PyObject *module, Py_complex z);
312 cmath_cosh(PyObject *module, PyObject *arg)
324 _return_value = cmath_cosh_impl(module, z);
342 "exp($module, z, /)\n"
351 cmath_exp_impl(PyObject *module, Py_complex z);
354 cmath_exp(PyObject *module, PyObject *arg)
366 _return_value = cmath_exp_impl(module, z);
384 "log10($module, z, /)\n"
393 cmath_log10_impl(PyObject *module, Py_complex z);
396 cmath_log10(PyObject *module, PyObject *arg)
408 _return_value = cmath_log10_impl(module, z);
426 "sin($module, z, /)\n"
435 cmath_sin_impl(PyObject *module, Py_complex z);
438 cmath_sin(PyObject *module, PyObject *arg)
450 _return_value = cmath_sin_impl(module, z);
468 "sinh($module, z, /)\n"
477 cmath_sinh_impl(PyObject *module, Py_complex z);
480 cmath_sinh(PyObject *module, PyObject *arg)
492 _return_value = cmath_sinh_impl(module, z);
510 "sqrt($module, z, /)\n"
519 cmath_sqrt_impl(PyObject *module, Py_complex z);
522 cmath_sqrt(PyObject *module, PyObject *arg)
534 _return_value = cmath_sqrt_impl(module, z);
552 "tan($module, z, /)\n"
561 cmath_tan_impl(PyObject *module, Py_complex z);
564 cmath_tan(PyObject *module, PyObject *arg)
576 _return_value = cmath_tan_impl(module, z);
594 "tanh($module, z, /)\n"
603 cmath_tanh_impl(PyObject *module, Py_complex z);
606 cmath_tanh(PyObject *module, PyObject *arg)
618 _return_value = cmath_tanh_impl(module, z);
636 "log($module, z, base=<unrepresentable>, /)\n"
647 cmath_log_impl(PyObject *module, Py_complex x, PyObject *y_obj);
650 cmath_log(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
668 return_value = cmath_log_impl(module, x, y_obj);
675 "phase($module, z, /)\n"
684 cmath_phase_impl(PyObject *module, Py_complex z);
687 cmath_phase(PyObject *module, PyObject *arg)
696 return_value = cmath_phase_impl(module, z);
703 "polar($module, z, /)\n"
714 cmath_polar_impl(PyObject *module, Py_complex z);
717 cmath_polar(PyObject *module, PyObject *arg)
726 return_value = cmath_polar_impl(module, z);
733 "rect($module, r, phi, /)\n"
742 cmath_rect_impl(PyObject *module, double r, double phi);
745 cmath_rect(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
774 return_value = cmath_rect_impl(module, r, phi);
781 "isfinite($module, z, /)\n"
790 cmath_isfinite_impl(PyObject *module, Py_complex z);
793 cmath_isfinite(PyObject *module, PyObject *arg)
802 return_value = cmath_isfinite_impl(module, z);
809 "isnan($module, z, /)\n"
818 cmath_isnan_impl(PyObject *module, Py_complex z);
821 cmath_isnan(PyObject *module, PyObject *arg)
830 return_value = cmath_isnan_impl(module, z);
837 "isinf($module, z, /)\n"
846 cmath_isinf_impl(PyObject *module, Py_complex z);
849 cmath_isinf(PyObject *module, PyObject *arg)
858 return_value = cmath_isinf_impl(module, z);
865 "isclose($module, /, a, b, *, rel_tol=1e-09, abs_tol=0.0)\n"
889 cmath_isclose_impl(PyObject *module, Py_complex a, Py_complex b,
893 cmath_isclose(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
947 _return_value = cmath_isclose_impl(module, a, b, rel_tol, abs_tol);