Home
last modified time | relevance | path

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

/external/python/cpython3/Objects/
Dclassobject.c59 Py_ssize_t totalargs = nargs + nkwargs; in method_vectorcall() local
60 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()
/external/python/cpython3/Python/
Dceval.c2415 int totalargs = 1 + (oparg & 0xFF) + (oparg >> 8); in _PyEval_EvalFrameDefault() local
2419 stack_pointer + totalargs)) { in _PyEval_EvalFrameDefault()
2420 stack_pointer += totalargs; in _PyEval_EvalFrameDefault()