Lines Matching defs:module

1 /* Complex math module */
21 module cmath
225 cmath_acos_impl(PyObject *module, Py_complex z)
247 s1 = cmath_sqrt_impl(module, s1);
250 s2 = cmath_sqrt_impl(module, s2);
268 cmath_acosh_impl(PyObject *module, Py_complex z)
282 s1 = cmath_sqrt_impl(module, s1);
285 s2 = cmath_sqrt_impl(module, s2);
300 cmath_asin_impl(PyObject *module, Py_complex z)
307 s = cmath_asinh_impl(module, s);
323 cmath_asinh_impl(PyObject *module, Py_complex z)
342 s1 = cmath_sqrt_impl(module, s1);
345 s2 = cmath_sqrt_impl(module, s2);
361 cmath_atan_impl(PyObject *module, Py_complex z)
368 s = cmath_atanh_impl(module, s);
414 cmath_atanh_impl(PyObject *module, Py_complex z)
424 return _Py_c_neg(cmath_atanh_impl(module, _Py_c_neg(z)));
469 cmath_cos_impl(PyObject *module, Py_complex z)
476 r = cmath_cosh_impl(module, r);
491 cmath_cosh_impl(PyObject *module, Py_complex z)
553 cmath_exp_impl(PyObject *module, Py_complex z)
682 cmath_log10_impl(PyObject *module, Py_complex z)
704 cmath_sin_impl(PyObject *module, Py_complex z)
711 s = cmath_sinh_impl(module, s);
728 cmath_sinh_impl(PyObject *module, Py_complex z)
787 cmath_sqrt_impl(PyObject *module, Py_complex z)
862 cmath_tan_impl(PyObject *module, Py_complex z)
869 s = cmath_tanh_impl(module, s);
886 cmath_tanh_impl(PyObject *module, Py_complex z)
964 cmath_log_impl(PyObject *module, Py_complex x, PyObject *y_obj)
1010 cmath_phase_impl(PyObject *module, Py_complex z)
1035 cmath_polar_impl(PyObject *module, Py_complex z)
1073 cmath_rect_impl(PyObject *module, double r, double phi)
1132 cmath_isfinite_impl(PyObject *module, Py_complex z)
1145 cmath_isnan_impl(PyObject *module, Py_complex z)
1158 cmath_isinf_impl(PyObject *module, Py_complex z)
1190 cmath_isclose_impl(PyObject *module, Py_complex a, Py_complex b,
1234 "This module provides access to mathematical functions for complex\n"