Home
last modified time | relevance | path

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

/external/python/cpython3/Objects/
Dmethodobject.c424 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in cfunction_vectorcall_FASTCALL()
440 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in cfunction_vectorcall_FASTCALL_KEYWORDS()
457 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in cfunction_vectorcall_FASTCALL_KEYWORDS_METHOD()
475 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in cfunction_vectorcall_NOARGS()
502 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in cfunction_vectorcall_O()
Ddescrobject.c298 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in method_vectorcall_VARARGS()
322 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in method_vectorcall_VARARGS_KEYWORDS()
357 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in method_vectorcall_FASTCALL_KEYWORDS_METHOD()
377 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in method_vectorcall_FASTCALL()
396 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in method_vectorcall_FASTCALL_KEYWORDS()
415 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in method_vectorcall_NOARGS()
442 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in method_vectorcall_O()
Dboolobject.c67 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in bool_vectorcall()
Dcall.c129 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in _PyObject_FastCallDictTstate()
337 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in _PyFunction_Vectorcall()
749 assert(PyVectorcall_NARGS(nargsf) >= 1); in PyObject_VectorcallMethod()
Denumobject.c339 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in reversed_vectorcall()
Dclassobject.c44 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in method_vectorcall()
Dtupleobject.c766 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in tuple_vectorcall()
Drangeobject.c150 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in range_vectorcall()
Dsetobject.c1031 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in frozenset_vectorcall()
2000 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in set_vectorcall()
Dfloatobject.c1669 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in float_vectorcall()
Dlistobject.c2746 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in list_vectorcall()
Ddictobject.c3490 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in dict_vectorcall()
Dtypeobject.c3335 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in type_vectorcall()
/external/python/cpython3/Include/cpython/
Dabstract.h56 PyVectorcall_NARGS(size_t n) in PyVectorcall_NARGS() function
107 assert(args != NULL || PyVectorcall_NARGS(nargsf) == 0); in _PyObject_VectorcallTstate()
111 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.c195 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in partial_vectorcall_fallback()
211 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in partial_vectorcall()
/external/python/cpython3/Python/
Dbltinmodule.c543 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in filter_vectorcall()
1267 Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); in map_vectorcall()