Lines Matching defs:argcount
207 size_t argcount, PyObject *kwnames);
4846 int argcount = oparg + is_meth;
4847 PyObject *callable = PEEK(argcount + 1);
4852 DEOPT_IF(code->co_argcount != argcount, CALL);
4859 STACK_SHRINK(argcount);
4860 for (int i = 0; i < argcount; i++) {
4863 for (int i = argcount; i < code->co_nlocalsplus; i++) {
4880 int argcount = oparg + is_meth;
4881 PyObject *callable = PEEK(argcount + 1);
4886 DEOPT_IF(argcount > code->co_argcount, CALL);
4888 DEOPT_IF(argcount < minargs, CALL);
4895 STACK_SHRINK(argcount);
4896 for (int i = 0; i < argcount; i++) {
4899 for (int i = argcount; i < code->co_argcount; i++) {
6139 Py_ssize_t argcount, PyObject *kwnames)
6165 if (argcount > co->co_argcount) {
6169 n = argcount;
6180 if (argcount == n) {
6185 u = _PyTuple_FromArraySteal(args + n, argcount - n);
6193 else if (argcount > n) {
6195 for (j = n; j < argcount; j++) {
6206 PyObject *value = args[i+argcount];
6263 PyObject *value = args[i+argcount];
6280 if ((argcount > co->co_argcount) && !(co->co_flags & CO_VARARGS)) {
6281 too_many_positional(tstate, co, argcount, func->func_defaults, localsplus,
6287 if (argcount < co->co_argcount) {
6291 for (i = argcount; i < m; i++) {
6346 for (j = 0; j < argcount; j++) {
6353 for (j = argcount; j < argcount+kwcount; j++) {
6366 size_t argcount, PyObject *kwnames)
6380 if (initialize_locals(tstate, func, localsarray, args, argcount, kwnames)) {
6388 for (size_t i = 0; i < argcount; i++) {
6394 Py_DECREF(args[i+argcount]);
6419 PyObject* const* args, size_t argcount,
6425 for (size_t i = 0; i < argcount; i++) {
6431 Py_INCREF(args[i+argcount]);
6435 tstate, func, locals, args, argcount, kwnames);
6451 PyObject *const *args, int argcount,
6482 newargs = PyMem_Malloc(sizeof(PyObject *)*(kwcount+argcount));
6486 for (int i = 0; i < argcount; i++) {
6492 newargs[argcount+i] = kws[2*i+1];
6511 allargs, argcount,