Home
last modified time | relevance | path

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

/third_party/python/Include/cpython/
Dabstract.h119 PyObject_Vectorcall(PyObject *callable, PyObject *const *args, in PyObject_Vectorcall() function
128 #define _PyObject_Vectorcall PyObject_Vectorcall
/third_party/python/Doc/c-api/
Dcall.rst104 :c:func:`PyObject_Vectorcall` will usually be most efficient.
217 | :c:func:`PyObject_Vectorcall` | ``PyObject *`` | vectorcall | vectorcall |
365 .. c:function:: PyObject* PyObject_Vectorcall(PyObject *callable, PyObject *const *args, size_t nar…
404 :c:func:`PyObject_Vectorcall`.
/third_party/python/Python/
Dbltinmodule.c484 PyObject *retval = PyObject_Vectorcall(hook, args, nargs, keywords); in builtin_breakpoint()
2356 v = PyObject_Vectorcall(callable, args + 1, nargs - 1, kwnames); in builtin_sorted()
Dceval.c4113 res = PyObject_Vectorcall(exit_func, stack + 1, in _PyEval_EvalFrameDefault()
5822 C_TRACE(x, PyObject_Vectorcall(func, args, nargs, kwnames)); in trace_call_function()
5838 C_TRACE(x, PyObject_Vectorcall(func, in trace_call_function()
5844 return PyObject_Vectorcall(func, args, nargs | PY_VECTORCALL_ARGUMENTS_OFFSET, kwnames); in trace_call_function()
5867 x = PyObject_Vectorcall(func, stack, nargs | PY_VECTORCALL_ARGUMENTS_OFFSET, kwnames); in Py_LOCAL_INLINE()
Dsysmodule.c595 PyObject *retval = PyObject_Vectorcall(hook, args, nargs, keywords); in sys_breakpointhook()
/third_party/python/Modules/
D_asynciomodule.c380 handle = PyObject_Vectorcall(callable, stack, nargs, context_kwname); in call_soon()
2860 res = PyObject_Vectorcall(add_cb, stack, 1, context_kwname); in task_step_impl()
D_testcapimodule.c5090 return PyObject_Vectorcall(func, stack, nargs, kwnames); in test_pyobject_vectorcall()
5463 PyObject *pykwargs = PyObject_Vectorcall((PyObject*)&PyDict_Type, in meth_fastcall_keywords()
/third_party/python/Misc/NEWS.d/
D3.9.0a4.rst946 ``PyObject_Vectorcall``, ``PyObject_VectorcallMethod``,