Home
last modified time | relevance | path

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

/external/python/cpython3/Modules/
D_functoolsmodule.c156 Py_ssize_t nargs_total = nargs; in partial_vectorcall() local
158 nargs_total += PyTuple_GET_SIZE(kwnames); in partial_vectorcall()
165 if (nargs_total == 0) { in partial_vectorcall()
182 Py_ssize_t newnargs_total = pto_nargs + nargs_total; in partial_vectorcall()
201 memcpy(stack + pto_nargs, args, nargs_total * sizeof(PyObject*)); in partial_vectorcall()