Home
last modified time | relevance | path

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

/external/python/cpython3/Include/
Dabstract.h225 PyAPI_FUNC(PyObject *) _PyObject_FastCallDict(
253 _PyObject_FastCallDict((func), (args), (nargs), NULL)
256 _PyObject_FastCallDict((func), NULL, 0, NULL)
/external/python/cpython3/Objects/
Dcall.c84 _PyObject_FastCallDict(PyObject *callable, PyObject *const *args, Py_ssize_t nargs, in _PyObject_FastCallDict() function
823 return _PyObject_FastCallDict(callable, NULL, 0, kwargs); in PyEval_CallObjectWithKeywords()
904 result = _PyObject_FastCallDict(callable, in _PyObject_Call_Prepend()
Dtypeobject.c7319 result = _PyObject_FastCallDict(func, NULL, 0, kwds); in init_subclass()
/external/python/cpython3/Modules/
D_csv.c516 return _PyObject_FastCallDict(type, &dialect_inst, 1, kwargs); in _call_dialect()
519 return _PyObject_FastCallDict(type, NULL, 0, kwargs); in _call_dialect()
D_operator.c1654 constructor = _PyObject_FastCallDict(partial, newargs, 2, mc->kwds); in methodcaller_reduce()
D_functoolsmodule.c169 ret = _PyObject_FastCallDict(pto->fn, stack, nargs2, kwargs); in partial_fastcall()
D_testcapimodule.c4413 return _PyObject_FastCallDict(func, stack, nargs, kwargs); in test_pyobject_fastcalldict()
/external/python/cpython3/Python/
Dbltinmodule.c227 ns = _PyObject_FastCallDict(prep, pargs, 2, mkw); in builtin___build_class__()
253 cls = _PyObject_FastCallDict(meta, margs, 3, mkw); in builtin___build_class__()
Derrors.c788 error = _PyObject_FastCallDict(exception, &msg, 1, kwargs); in PyErr_SetImportErrorSubclass()