Lines Matching refs:args

206                         PyObject *locals, PyObject* const* args,
950 PyObject *args[] = { map, key, dummy };
953 value = PyObject_Vectorcall(get, args, 3, NULL);
956 value = PyObject_Vectorcall(get, &args[1], 2, NULL);
1629 #define is_method(stack_pointer, args) (PEEK((args)+2) != NULL)
5054 /* res = func(self, args, nargs) */
5092 /* res = func(self, args, nargs, kwnames) */
5958 /* Count missing keyword-only args. */
6138 PyObject **localsplus, PyObject *const *args,
6172 PyObject *x = args[j];
6177 /* Pack other positional arguments into the *args argument */
6184 assert(args != NULL);
6185 u = _PyTuple_FromArraySteal(args + n, argcount - n);
6194 /* Too many postional args. Error is reported later */
6196 Py_DECREF(args[j]);
6206 PyObject *value = args[i+argcount];
6263 PyObject *value = args[i+argcount];
6347 Py_DECREF(args[j]);
6354 Py_DECREF(args[j]);
6362 /* Consumes references to func and all the args */
6365 PyObject *locals, PyObject* const* args,
6380 if (initialize_locals(tstate, func, localsarray, args, argcount, kwnames)) {
6389 Py_DECREF(args[i]);
6394 Py_DECREF(args[i+argcount]);
6419 PyObject* const* args, size_t argcount,
6426 Py_INCREF(args[i]);
6431 Py_INCREF(args[i+argcount]);
6435 tstate, func, locals, args, argcount, kwnames);
6451 PyObject *const *args, int argcount,
6475 allargs = args;
6487 newargs[i] = args[i];
6763 /* Pop the "after-variable" args off the list. */
6886 _PyEval_CallTracing(PyObject *func, PyObject *args)
6895 PyObject *result = PyObject_Call(func, args, NULL);
7287 PyObject **args, Py_ssize_t nargs,
7293 C_TRACE(x, PyObject_Vectorcall(func, args, nargs, kwnames));
7304 PyObject *self = args[0];
7310 args+1, nargs-1,
7315 return PyObject_Vectorcall(func, args, nargs | PY_VECTORCALL_ARGUMENTS_OFFSET, kwnames);
7681 check_args_iterable(PyThreadState *tstate, PyObject *func, PyObject *args)
7683 if (Py_TYPE(args)->tp_iter == NULL && !PySequence_Check(args)) {
7692 funcstr, Py_TYPE(args)->tp_name);
7834 _Py_GetDXProfile(PyObject *self, PyObject *args)