Home
last modified time | relevance | path

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

/external/python/cpython3/Include/cpython/
Dabstract.h115 _PyObject_Vectorcall(PyObject *callable, PyObject *const *args, in _PyObject_Vectorcall() function
147 return _PyObject_Vectorcall(func, args, (size_t)nargs, NULL); in _PyObject_FastCall()
153 return _PyObject_Vectorcall(func, NULL, 0, NULL); in _PyObject_CallNoArg()
/external/python/cpython3/Objects/
Dclassobject.c60 result = _PyObject_Vectorcall(func, newargs, nargs, kwnames); in method_vectorcall()
67 return _PyObject_Vectorcall(func, &self, 1, NULL); in method_vectorcall()
89 result = _PyObject_Vectorcall(func, newargs, nargs+1, kwnames); in method_vectorcall()
/external/python/cpython3/Doc/c-api/
Dobject.rst345 .. c:function:: PyObject* _PyObject_Vectorcall(PyObject *callable, PyObject *const *args, size_t na…
404 Same as :c:func:`_PyObject_Vectorcall` except that the keyword arguments
411 :c:func:`_PyObject_Vectorcall`.
Dtypeobj.rst696 The signature is the same as for :c:func:`_PyObject_Vectorcall`::
2376 Arguments to ``vectorcallfunc`` are the same as for :c:func:`_PyObject_Vectorcall`.
/external/python/cpython3/Python/
Dbltinmodule.c491 PyObject *retval = _PyObject_Vectorcall(hook, args, nargs, keywords); in builtin_breakpoint()
2237 v = _PyObject_Vectorcall(callable, args + 1, nargs - 1, kwnames); in builtin_sorted()
Dcontext.c634 PyObject *call_result = _PyObject_Vectorcall( in context_run()
Dceval.c4946 C_TRACE(x, _PyObject_Vectorcall(func, args, nargs, kwnames)); in trace_call_function()
4962 C_TRACE(x, _PyObject_Vectorcall(func, in trace_call_function()
4968 return _PyObject_Vectorcall(func, args, nargs | PY_VECTORCALL_ARGUMENTS_OFFSET, kwnames); in trace_call_function()
4987 x = _PyObject_Vectorcall(func, stack, nargs | PY_VECTORCALL_ARGUMENTS_OFFSET, kwnames); in Py_LOCAL_INLINE()
Dsysmodule.c481 PyObject *retval = _PyObject_Vectorcall(hook, args, nargs, keywords); in sys_breakpointhook()
/external/python/cpython3/Modules/
D_asynciomodule.c371 handle = _PyObject_Vectorcall(callable, stack, nargs, context_kwname); in call_soon()
2836 res = _PyObject_Vectorcall(add_cb, stack, 1, context_kwname); in task_step_impl()
D_testcapimodule.c4777 return _PyObject_Vectorcall(func, stack, nargs, kwnames); in test_pyobject_vectorcall()