Lines Matching refs:args
842 math_gcd(PyObject *module, PyObject * const *args, Py_ssize_t nargs)
850 res = PyNumber_Index(args[0]);
861 x = _PyNumber_Index(args[i]);
917 math_lcm(PyObject *module, PyObject * const *args, Py_ssize_t nargs)
925 res = PyNumber_Index(args[0]);
936 x = PyNumber_Index(args[i]);
1122 math_2(PyObject *const *args, Py_ssize_t nargs,
1128 x = PyFloat_AsDouble(args[0]);
1132 y = PyFloat_AsDouble(args[1]);
1157 static PyObject * math_##funcname(PyObject *self, PyObject *args) { \
1158 return math_1(args, func, can_overflow); \
1163 static PyObject * math_##funcname(PyObject *self, PyObject *args) { \
1164 return math_1a(args, func); \
1169 static PyObject * math_##funcname(PyObject *self, PyObject *const *args, Py_ssize_t nargs) { \
1170 return math_2(args, nargs, func, #funcname); \
2752 /* AC: cannot convert yet, waiting for *args support */
2754 math_hypot(PyObject *self, PyObject *const *args, Py_ssize_t nargs)
2771 item = args[i];