Searched refs:totalargs (Results 1 – 2 of 2) sorted by relevance
59 Py_ssize_t totalargs = nargs + nkwargs; in method_vectorcall() local60 if (totalargs == 0) { in method_vectorcall()66 if (totalargs <= (Py_ssize_t)Py_ARRAY_LENGTH(newargs_stack) - 1) { in method_vectorcall()70 newargs = PyMem_Malloc((totalargs+1) * sizeof(PyObject *)); in method_vectorcall()82 memcpy(newargs + 1, args, totalargs * sizeof(PyObject *)); in method_vectorcall()
2415 int totalargs = 1 + (oparg & 0xFF) + (oparg >> 8); in _PyEval_EvalFrameDefault() local2419 stack_pointer + totalargs)) { in _PyEval_EvalFrameDefault()2420 stack_pointer += totalargs; in _PyEval_EvalFrameDefault()