Home
last modified time | relevance | path

Searched refs:vectorcallfunc (Results 1 – 25 of 32) sorted by relevance

12

/external/python/cpython3/Python/
Dlegacy_tracing.c15 vectorcallfunc vectorcall;
407 set_callbacks(int tool, vectorcallfunc vectorcall, int legacy_event, int event1, int event2) in set_callbacks()
446 (vectorcallfunc)sys_profile_start, PyTrace_CALL, in setup_profile()
451 (vectorcallfunc)sys_profile_throw, PyTrace_CALL, in setup_profile()
456 (vectorcallfunc)sys_profile_return, PyTrace_RETURN, in setup_profile()
461 (vectorcallfunc)sys_profile_unwind, PyTrace_RETURN, in setup_profile()
466 (vectorcallfunc)sys_profile_call_or_return, PyTrace_C_CALL, in setup_profile()
471 (vectorcallfunc)sys_profile_call_or_return, PyTrace_C_RETURN, in setup_profile()
476 (vectorcallfunc)sys_profile_call_or_return, PyTrace_C_EXCEPTION, in setup_profile()
531 (vectorcallfunc)sys_trace_start, PyTrace_CALL, in setup_tracing()
[all …]
Dbltinmodule.c672 .tp_vectorcall = (vectorcallfunc)filter_vectorcall
1526 .tp_vectorcall = (vectorcallfunc)map_vectorcall
/external/python/cpython3/Modules/_testcapi/
Dvectorcall.c118 PyFunction_SetVectorcall((PyFunctionObject *)func, (vectorcallfunc)override_vectorcall); in function_setvectorcall()
191 *(vectorcallfunc*)((char*)self + type->tp_vectorcall_offset) = ( in _testcapi_VectorCallClass_set_vectorcall_impl()
235 .basicsize = (int)(base->tp_basicsize + sizeof(vectorcallfunc)), in _testcapi_make_vectorcall_class_impl()
274 vectorcallfunc vectorcall;
344 vectorcallfunc vectorcall;
/external/python/cpython3/Include/internal/
Dpycore_call.h114 static inline vectorcallfunc
128 vectorcallfunc ptr; in _PyVectorcall_FunctionInline()
157 vectorcallfunc func; in _PyObject_VectorcallTstate()
/external/python/cpython3/Modules/_testlimitedcapi/
Dvectorcall_limited.c37 *(vectorcallfunc*)((char*)self + sizeof(PyObject)) = ( in LimitedVectorCallClass_new()
171 .basicsize = (int)(sizeof(PyObject) + sizeof(vectorcallfunc)),
/external/python/cpython3/Include/cpython/
Dfuncobject.h45 vectorcallfunc vectorcall;
76 PyAPI_FUNC(void) PyFunction_SetVectorcall(PyFunctionObject *, vectorcallfunc);
Dweakrefobject.h32 vectorcallfunc vectorcall;
Ddescrobject.h41 vectorcallfunc vectorcall;
Dclassobject.h17 vectorcallfunc vectorcall;
Dmethodobject.h13 vectorcallfunc vectorcall;
Dabstract.h39 PyAPI_FUNC(vectorcallfunc) PyVectorcall_Function(PyObject *callable);
Dobject.h228 vectorcallfunc tp_vectorcall;
/external/python/cpython3/Doc/includes/
Dtypestruct.h82 vectorcallfunc tp_vectorcall;
/external/python/cpython3/Objects/
Dcall.c127 vectorcallfunc func = PyVectorcall_Function(callable); in _PyObject_VectorcallDictTstate()
256 vectorcallfunc
264 _PyVectorcall_Call(PyThreadState *tstate, vectorcallfunc func, in _PyVectorcall_Call()
309 vectorcallfunc func; in PyVectorcall_Call()
346 vectorcallfunc vector_func = PyVectorcall_Function(callable); in _PyObject_Call()
Denumobject.c332 .tp_vectorcall = (vectorcallfunc)enumerate_vectorcall
544 .tp_vectorcall = (vectorcallfunc)reversed_vectorcall,
Dmethodobject.c48 vectorcallfunc vectorcall; in PyCMethod_New()
Dgenericaliasobject.c20 vectorcallfunc vectorcall;
Drangeobject.c806 .tp_vectorcall = (vectorcallfunc)range_vectorcall
Dfuncobject.c437 PyFunction_SetVectorcall(PyFunctionObject *func, vectorcallfunc vectorcall) in PyFunction_SetVectorcall()
/external/python/cpython3/Modules/
D_operator.c989 vectorcallfunc vectorcall;
1042 ig->vectorcall = (vectorcallfunc)itemgetter_vectorcall; in itemgetter_new()
1209 vectorcallfunc vectorcall;
1321 ag->vectorcall = (vectorcallfunc)attrgetter_vectorcall; in attrgetter_new()
1572 vectorcallfunc vectorcall;
1684 mc->vectorcall = (vectorcallfunc)methodcaller_vectorcall; in methodcaller_new()
D_functoolsmodule.c51 vectorcallfunc vectorcall;
309 pto->vectorcall = (vectorcallfunc)partial_vectorcall; in partial_setvectorcall()
/external/python/cpython3/Doc/c-api/
Dcall.rst77 object structure where a *vectorcallfunc* appears.
80 .. c:type:: PyObject *(*vectorcallfunc)(PyObject *callable, PyObject *const *args, size_t nargsf, P…
147 .. c:function:: vectorcallfunc PyVectorcall_Function(PyObject *op)
161 Call *callable*'s :c:type:`vectorcallfunc` with positional and keyword
354 The arguments are the same as for :c:type:`vectorcallfunc`.
Dfunction.rst89 .. c:function:: void PyFunction_SetVectorcall(PyFunctionObject *func, vectorcallfunc vectorcall)
/external/python/cpython3/Include/
Dobject.h495 typedef PyObject *(*vectorcallfunc)(PyObject *callable, PyObject *const *args, typedef
/external/python/cpython3/Doc/data/
Dstable_abi.dat921 type,vectorcallfunc,3.12,,

12