Home
last modified time | relevance | path

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

/external/python/cpython3/Objects/
Dmethodobject.c420 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in cfunction_vectorcall_FASTCALL()
436 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in cfunction_vectorcall_FASTCALL_KEYWORDS()
453 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in cfunction_vectorcall_FASTCALL_KEYWORDS_METHOD()
471 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in cfunction_vectorcall_NOARGS()
498 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in cfunction_vectorcall_O()
Ddescrobject.c300 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in method_vectorcall_VARARGS()
324 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in method_vectorcall_VARARGS_KEYWORDS()
359 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in method_vectorcall_FASTCALL_KEYWORDS_METHOD()
379 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in method_vectorcall_FASTCALL()
398 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in method_vectorcall_FASTCALL_KEYWORDS()
417 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in method_vectorcall_NOARGS()
444 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in method_vectorcall_O()
Dcall.c105 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in _PyObject_FastCallDictTstate()
351 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in _PyFunction_Vectorcall()
806 assert(PyVectorcall_NARGS(nargsf) >= 1); in PyObject_VectorcallMethod()
Dclassobject.c44 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in method_vectorcall()
Dtupleobject.c719 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in tuple_vectorcall()
Drangeobject.c149 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in range_vectorcall()
Dsetobject.c1034 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in frozenset_vectorcall()
1972 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in set_vectorcall()
Dlistobject.c2727 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in list_vectorcall()
Ddictobject.c3374 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in dict_vectorcall()
/external/python/cpython3/Include/cpython/
Dabstract.h60 PyVectorcall_NARGS(size_t n) in PyVectorcall_NARGS() function
111 assert(args != NULL || PyVectorcall_NARGS(nargsf) == 0); in _PyObject_VectorcallTstate()
115 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in _PyObject_VectorcallTstate()
/external/python/cpython3/Doc/c-api/
Dcall.rst80 use :c:func:`PyVectorcall_NARGS`.
136 .. c:function:: Py_ssize_t PyVectorcall_NARGS(size_t nargsf)
144 However, the function ``PyVectorcall_NARGS`` should be used to allow
/external/python/cpython3/Modules/
D_functoolsmodule.c139 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in partial_vectorcall_fallback()
155 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in partial_vectorcall()