Home
last modified time | relevance | path

Searched refs:total_args (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython3/Objects/
Dcodeobject.c144 Py_ssize_t total_args = argcount + kwonlyargcount + in PyCode_New() local
156 for (j = 0; j < total_args; j++) { in PyCode_New()
/external/python/cpython3/Python/
Dceval.c3878 const Py_ssize_t total_args = co->co_argcount + co->co_kwonlyargcount; in _PyEval_EvalCodeWithName() local
3903 i = total_args; in _PyEval_EvalCodeWithName()
3932 SETLOCAL(total_args, u); in _PyEval_EvalCodeWithName()
3958 for (j = 0; j < total_args; j++) { in _PyEval_EvalCodeWithName()
3966 for (j = 0; j < total_args; j++) { in _PyEval_EvalCodeWithName()
3977 if (j >= total_args && kwdict == NULL) { in _PyEval_EvalCodeWithName()
4035 for (i = co->co_argcount; i < total_args; i++) { in _PyEval_EvalCodeWithName()