Lines Matching defs:total_args
4739 int total_args = oparg + is_meth;
4740 PyObject *function = PEEK(total_args + 1);
4741 int positional_args = total_args - KWNAMES_LEN();
4746 STACK_SHRINK(total_args);
4770 tstate, function, stack_pointer-total_args,
4775 function, stack_pointer-total_args,
4783 STACK_SHRINK(total_args);
4784 for (int i = 0; i < total_args; i++) {
4980 int total_args = oparg + is_meth;
4982 PyObject *callable = PEEK(total_args + 1);
4988 STACK_SHRINK(total_args);
4990 total_args-kwnames_len, call_shape.kwnames);
4993 for (int i = 0; i < total_args; i++) {
5011 int total_args = oparg + is_meth;
5012 DEOPT_IF(total_args != 1, PRECALL);
5013 PyObject *callable = PEEK(total_args + 1);
5045 int total_args = oparg + is_meth;
5046 PyObject *callable = PEEK(total_args + 1);
5053 STACK_SHRINK(total_args);
5058 total_args);
5062 for (int i = 0; i < total_args; i++) {
5084 int total_args = oparg + is_meth;
5085 PyObject *callable = PEEK(total_args + 1);
5091 STACK_SHRINK(total_args);
5099 total_args - KWNAMES_LEN(),
5106 for (int i = 0; i < total_args; i++) {
5124 int total_args = oparg + is_meth;
5125 DEOPT_IF(total_args != 1, PRECALL);
5126 PyObject *callable = PEEK(total_args + 1);
5154 int total_args = oparg + is_meth;
5155 PyObject *callable = PEEK(total_args + 1);
5156 DEOPT_IF(total_args != 2, PRECALL);
5208 int total_args = oparg + is_meth;
5210 (PyMethodDescrObject *)PEEK(total_args + 1);
5211 DEOPT_IF(total_args != 2, PRECALL);
5243 int total_args = oparg + is_meth;
5245 (PyMethodDescrObject *)PEEK(total_args + 1);
5250 PyObject *self = PEEK(total_args);
5254 int nargs = total_args-1;
5282 int total_args = oparg + is_meth;
5283 DEOPT_IF(total_args != 1, PRECALL);
5315 int total_args = oparg + is_meth;
5317 (PyMethodDescrObject *)PEEK(total_args + 1);
5322 PyObject *self = PEEK(total_args);
5328 int nargs = total_args-1;
6142 const Py_ssize_t total_args = co->co_argcount + co->co_kwonlyargcount;
6152 i = total_args;
6190 assert(localsplus[total_args] == NULL);
6191 localsplus[total_args] = u;
6219 for (j = co->co_posonlyargcount; j < total_args; j++) {
6227 for (j = co->co_posonlyargcount; j < total_args; j++) {
6238 assert(j >= total_args);
6320 for (i = co->co_argcount; i < total_args; i++) {