Searched refs:_PyObject_FastCall (Results 1 – 13 of 13) sorted by relevance
/external/python/cpython3/Objects/ |
D | call.c | 866 result = _PyObject_FastCall(callable, args2, nargs); in _PyObject_FastCall_Prepend() 952 result = _PyObject_FastCall(callable, in _PyObject_CallFunctionVa() 957 result = _PyObject_FastCall(callable, stack, nargs); in _PyObject_CallFunctionVa() 1198 result = _PyObject_FastCall(callable, stack, nargs); in object_vacall()
|
D | moduleobject.c | 714 return _PyObject_FastCall(getattr, stack, 1); in module_getattro()
|
D | typeobject.c | 1484 return _PyObject_FastCall(func, args, nargs); in call_unbound() 1493 return _PyObject_FastCall(func, args, 1); in call_unbound_noarg() 7307 super = _PyObject_FastCall((PyObject *)&PySuper_Type, args, 2); in init_subclass()
|
D | abstract.c | 181 result = _PyObject_FastCall(meth, stack, 1); in PyObject_GetItem()
|
/external/python/cpython3/Include/ |
D | abstract.h | 252 #define _PyObject_FastCall(func, args, nargs) \ macro
|
/external/python/cpython3/Python/ |
D | bltinmodule.c | 85 new_base = _PyObject_FastCall(meth, stack, 1); in update_bases() 1321 result = _PyObject_FastCall(lz->func, stack, nargs); in map_next()
|
D | pythonrun.c | 679 result = _PyObject_FastCall(hook, stack, 3); in PyErr_PrintEx()
|
D | sysmodule.c | 501 result = _PyObject_FastCall(callback, stack, 3); in call_trampoline()
|
D | ceval.c | 2998 res = _PyObject_FastCall(exit_func, stack, 3); in _PyEval_EvalFrameDefault() 4786 res = _PyObject_FastCall(import_func, stack, 5); in import_name()
|
D | ast.c | 652 id2 = _PyObject_FastCall(c->c_normalize, args, 2); in new_identifier()
|
/external/python/cpython3/Modules/ |
D | _functoolsmodule.c | 555 res = _PyObject_FastCall(compare, stack, 2); in keyobject_richcompare()
|
D | _elementtree.c | 885 return _PyObject_FastCall(st->deepcopy_obj, stack, 2); in deepcopy()
|
D | _testcapimodule.c | 4386 return _PyObject_FastCall(func, stack, nargs); in test_pyobject_fastcall()
|