Lines Matching defs:nargs
1015 Py_ssize_t nargs, PyObject *kwargs)
1040 if (nargs) {
1067 if (allowed < nargs) {
1072 allowed, plural, nargs);
1080 for (Py_ssize_t i = 0; i < nargs; i++) {
4686 int nargs = oparg + is_meth;
4689 PyObject *function = PEEK(nargs + 1);
4720 int nargs = oparg + is_method(stack_pointer, oparg);
4721 PyObject *function = PEEK(nargs + 1);
4802 int nargs = oparg + is_meth;
4803 PyObject *callable = PEEK(nargs + 1);
4804 int err = _Py_Specialize_Precall(callable, next_instr, nargs,
4824 int nargs = oparg + is_meth;
4825 PyObject *callable = PEEK(nargs + 1);
4826 int err = _Py_Specialize_Call(callable, next_instr, nargs,
5054 /* res = func(self, args, nargs) */
5092 /* res = func(self, args, nargs, kwnames) */
5254 int nargs = total_args-1;
5255 STACK_SHRINK(nargs);
5258 PyObject *res = cfunc(self, stack_pointer, nargs - KWNAMES_LEN(),
5264 for (int i = 0; i < nargs; i++) {
5328 int nargs = total_args-1;
5329 STACK_SHRINK(nargs);
5330 PyObject *res = cfunc(self, stack_pointer, nargs);
5333 for (int i = 0; i < nargs; i++) {
7287 PyObject **args, Py_ssize_t nargs,
7293 C_TRACE(x, PyObject_Vectorcall(func, args, nargs, kwnames));
7296 else if (Py_IS_TYPE(func, &PyMethodDescr_Type) && nargs > 0) {
7300 If nargs == 0, then this cannot work because we have no
7310 args+1, nargs-1,
7315 return PyObject_Vectorcall(func, args, nargs | PY_VECTORCALL_ARGUMENTS_OFFSET, kwnames);
7333 Py_ssize_t nargs = PyTuple_GET_SIZE(callargs);
7334 if (nargs > 0 && use_tracing) {
7338 If nargs == 0, then this cannot work because we have no
7351 nargs - 1,