Searched refs:_PyObject_Vectorcall (Results 1 – 10 of 10) sorted by relevance
/external/python/cpython3/Include/cpython/ |
D | abstract.h | 115 _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/ |
D | classobject.c | 60 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/ |
D | object.rst | 345 .. 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`.
|
D | typeobj.rst | 696 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/ |
D | bltinmodule.c | 491 PyObject *retval = _PyObject_Vectorcall(hook, args, nargs, keywords); in builtin_breakpoint() 2237 v = _PyObject_Vectorcall(callable, args + 1, nargs - 1, kwnames); in builtin_sorted()
|
D | context.c | 634 PyObject *call_result = _PyObject_Vectorcall( in context_run()
|
D | ceval.c | 4946 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()
|
D | sysmodule.c | 481 PyObject *retval = _PyObject_Vectorcall(hook, args, nargs, keywords); in sys_breakpointhook()
|
/external/python/cpython3/Modules/ |
D | _asynciomodule.c | 371 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.c | 4777 return _PyObject_Vectorcall(func, stack, nargs, kwnames); in test_pyobject_vectorcall()
|