Lines Matching refs:PyObject
81 static PyObject *
82 math_frexp_impl(PyObject *module, double x);
84 static PyObject *
85 math_frexp(PyObject *module, PyObject *arg) in math_frexp()
87 PyObject *return_value = NULL; in math_frexp()
117 static PyObject *
118 math_ldexp_impl(PyObject *module, double x, PyObject *i);
120 static PyObject *
121 math_ldexp(PyObject *module, PyObject *const *args, Py_ssize_t nargs) in math_ldexp()
123 PyObject *return_value = NULL; in math_ldexp()
125 PyObject *i; in math_ldexp()
158 static PyObject *
159 math_modf_impl(PyObject *module, double x);
161 static PyObject *
162 math_modf(PyObject *module, PyObject *arg) in math_modf()
164 PyObject *return_value = NULL; in math_modf()
192 static PyObject *
193 math_log_impl(PyObject *module, PyObject *x, int group_right_1,
194 PyObject *base);
196 static PyObject *
197 math_log(PyObject *module, PyObject *args) in math_log()
199 PyObject *return_value = NULL; in math_log()
200 PyObject *x; in math_log()
202 PyObject *base = NULL; in math_log()
255 static PyObject *
256 math_fmod_impl(PyObject *module, double x, double y);
258 static PyObject *
259 math_fmod(PyObject *module, PyObject *const *args, Py_ssize_t nargs) in math_fmod()
261 PyObject *return_value = NULL; in math_fmod()
309 static PyObject *
310 math_dist_impl(PyObject *module, PyObject *p, PyObject *q);
312 static PyObject *
313 math_dist(PyObject *module, PyObject *const *args, Py_ssize_t nargs) in math_dist()
315 PyObject *return_value = NULL; in math_dist()
316 PyObject *p; in math_dist()
317 PyObject *q; in math_dist()
339 static PyObject *
340 math_pow_impl(PyObject *module, double x, double y);
342 static PyObject *
343 math_pow(PyObject *module, PyObject *const *args, Py_ssize_t nargs) in math_pow()
345 PyObject *return_value = NULL; in math_pow()
387 static PyObject *
388 math_degrees_impl(PyObject *module, double x);
390 static PyObject *
391 math_degrees(PyObject *module, PyObject *arg) in math_degrees()
393 PyObject *return_value = NULL; in math_degrees()
421 static PyObject *
422 math_radians_impl(PyObject *module, double x);
424 static PyObject *
425 math_radians(PyObject *module, PyObject *arg) in math_radians()
427 PyObject *return_value = NULL; in math_radians()
455 static PyObject *
456 math_isfinite_impl(PyObject *module, double x);
458 static PyObject *
459 math_isfinite(PyObject *module, PyObject *arg) in math_isfinite()
461 PyObject *return_value = NULL; in math_isfinite()
489 static PyObject *
490 math_isnan_impl(PyObject *module, double x);
492 static PyObject *
493 math_isnan(PyObject *module, PyObject *arg) in math_isnan()
495 PyObject *return_value = NULL; in math_isnan()
523 static PyObject *
524 math_isinf_impl(PyObject *module, double x);
526 static PyObject *
527 math_isinf(PyObject *module, PyObject *arg) in math_isinf()
529 PyObject *return_value = NULL; in math_isinf()
574 math_isclose_impl(PyObject *module, double a, double b, double rel_tol,
577 static PyObject *
578 math_isclose(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) in math_isclose()
580 PyObject *return_value = NULL; in math_isclose()
583 PyObject *argsbuf[4]; in math_isclose()
669 static PyObject *
670 math_prod_impl(PyObject *module, PyObject *iterable, PyObject *start);
672 static PyObject *
673 math_prod(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) in math_prod()
675 PyObject *return_value = NULL; in math_prod()
678 PyObject *argsbuf[2]; in math_prod()
680 PyObject *iterable; in math_prod()
681 PyObject *start = NULL; in math_prod()
717 static PyObject *
718 math_perm_impl(PyObject *module, PyObject *n, PyObject *k);
720 static PyObject *
721 math_perm(PyObject *module, PyObject *const *args, Py_ssize_t nargs) in math_perm()
723 PyObject *return_value = NULL; in math_perm()
724 PyObject *n; in math_perm()
725 PyObject *k = Py_None; in math_perm()
761 static PyObject *
762 math_comb_impl(PyObject *module, PyObject *n, PyObject *k);
764 static PyObject *
765 math_comb(PyObject *module, PyObject *const *args, Py_ssize_t nargs) in math_comb()
767 PyObject *return_value = NULL; in math_comb()
768 PyObject *n; in math_comb()
769 PyObject *k; in math_comb()
791 static PyObject *
792 math_nextafter_impl(PyObject *module, double x, double y);
794 static PyObject *
795 math_nextafter(PyObject *module, PyObject *const *args, Py_ssize_t nargs) in math_nextafter()
797 PyObject *return_value = NULL; in math_nextafter()
840 math_ulp_impl(PyObject *module, double x);
842 static PyObject *
843 math_ulp(PyObject *module, PyObject *arg) in math_ulp()
845 PyObject *return_value = NULL; in math_ulp()