Home
last modified time | relevance | path

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

/external/python/cpython3/Include/
Dfuncobject.h62 PyAPI_FUNC(PyObject *) _PyFunction_FastCallDict(
/external/python/cpython3/Objects/
Dcall.c98 return _PyFunction_FastCallDict(callable, args, nargs, kwargs); in _PyObject_FastCallDict()
226 return _PyFunction_FastCallDict(callable, in PyObject_Call()
299 _PyFunction_FastCallDict(PyObject *func, PyObject *const *args, Py_ssize_t nargs, in _PyFunction_FastCallDict() function
Dfuncobject.c578 return _PyFunction_FastCallDict(func, stack, nargs, kwargs); in function_call()