Home
last modified time | relevance | path

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

/external/python/pybind11/tests/
Dvalgrind-python.supp57 fun:PyObject_Vectorcall
75 fun:PyObject_Vectorcall
Dvalgrind-numpy-scipy.supp44 fun:PyObject_Vectorcall
/external/python/cpython3/Include/cpython/
Dabstract.h123 PyObject_Vectorcall(PyObject *callable, PyObject *const *args, in PyObject_Vectorcall() function
132 #define _PyObject_Vectorcall PyObject_Vectorcall
/external/python/cpython3/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`.
/external/python/cpython3/Python/
Dbltinmodule.c492 PyObject *retval = PyObject_Vectorcall(hook, args, nargs, keywords); in builtin_breakpoint()
2238 v = PyObject_Vectorcall(callable, args + 1, nargs - 1, kwnames); in builtin_sorted()
Dceval.c3419 res = PyObject_Vectorcall(exit_func, stack + 1, in _PyEval_EvalFrameDefault()
5031 C_TRACE(x, PyObject_Vectorcall(func, args, nargs, kwnames)); in trace_call_function()
5047 C_TRACE(x, PyObject_Vectorcall(func, in trace_call_function()
5053 return PyObject_Vectorcall(func, args, nargs | PY_VECTORCALL_ARGUMENTS_OFFSET, kwnames); in trace_call_function()
5072 x = PyObject_Vectorcall(func, stack, nargs | PY_VECTORCALL_ARGUMENTS_OFFSET, kwnames); in Py_LOCAL_INLINE()
Dsysmodule.c573 PyObject *retval = PyObject_Vectorcall(hook, args, nargs, keywords); in sys_breakpointhook()
/external/python/cpython3/Modules/
D_asynciomodule.c379 handle = PyObject_Vectorcall(callable, stack, nargs, context_kwname); in call_soon()
2891 res = PyObject_Vectorcall(add_cb, stack, 1, context_kwname); in task_step_impl()
D_testcapimodule.c4905 return PyObject_Vectorcall(func, stack, nargs, kwnames); in test_pyobject_vectorcall()
5278 PyObject *pykwargs = PyObject_Vectorcall((PyObject*)&PyDict_Type, in meth_fastcall_keywords()
/external/python/cpython3/Misc/NEWS.d/
D3.9.0a4.rst946 ``PyObject_Vectorcall``, ``PyObject_VectorcallMethod``,