Home
last modified time | relevance | path

Searched refs:_PyObject_VectorcallTstate (Results 1 – 8 of 8) sorted by relevance

/third_party/python/Include/cpython/
Dabstract.h99 _PyObject_VectorcallTstate(PyThreadState *tstate, PyObject *callable, in _PyObject_VectorcallTstate() function
123 return _PyObject_VectorcallTstate(tstate, callable, in PyObject_Vectorcall()
151 return _PyObject_VectorcallTstate(tstate, func, args, (size_t)nargs, NULL); in _PyObject_FastCallTstate()
168 return _PyObject_VectorcallTstate(tstate, func, NULL, 0, NULL); in _PyObject_CallNoArg()
184 return _PyObject_VectorcallTstate(tstate, func, args, nargsf, NULL); in PyObject_CallOneArg()
/third_party/python/Objects/
Dclassobject.c53 result = _PyObject_VectorcallTstate(tstate, func, newargs, in method_vectorcall()
61 return _PyObject_VectorcallTstate(tstate, func, &self, 1, NULL); in method_vectorcall()
83 result = _PyObject_VectorcallTstate(tstate, func, in method_vectorcall()
Dcall.c479 result = _PyObject_VectorcallTstate(tstate, callable, in _PyObject_CallFunctionVa()
485 result = _PyObject_VectorcallTstate(tstate, callable, in _PyObject_CallFunctionVa()
734 result = _PyObject_VectorcallTstate(tstate, callable, stack, nargs, NULL); in object_vacall()
770 PyObject *result = _PyObject_VectorcallTstate(tstate, callable, in PyObject_VectorcallMethod()
Dtypeobject.c1627 return _PyObject_VectorcallTstate(tstate, func, args, nargsf, NULL); in vectorcall_unbound()
/third_party/python/Include/internal/
Dpycore_call.h33 return _PyObject_VectorcallTstate(tstate, func, NULL, 0, NULL); in _PyObject_CallNoArgTstate()
/third_party/python/Modules/
D_functoolsmodule.c222 return _PyObject_VectorcallTstate(tstate, pto->fn, in partial_vectorcall()
232 PyObject *ret = _PyObject_VectorcallTstate(tstate, pto->fn, in partial_vectorcall()
259 ret = _PyObject_VectorcallTstate(tstate, pto->fn, in partial_vectorcall()
/third_party/python/Python/
Dcontext.c665 PyObject *call_result = _PyObject_VectorcallTstate( in context_run()
Dbltinmodule.c1347 result = _PyObject_VectorcallTstate(tstate, lz->func, stack, nargs, NULL); in map_next()