Home
last modified time | relevance | path

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

/external/python/cpython3/Include/cpython/
Dabstract.h65 static inline vectorcallfunc
70 vectorcallfunc *ptr; in PyVectorcall_Function()
80 ptr = (vectorcallfunc *)(((char *)callable) + offset); in PyVectorcall_Function()
107 vectorcallfunc func; in _PyObject_VectorcallTstate()
Dmethodobject.h29 vectorcallfunc vectorcall;
Dobject.h74 typedef PyObject *(*vectorcallfunc)(PyObject *callable, PyObject *const *args, typedef
273 vectorcallfunc tp_vectorcall;
/external/python/cpython3/Include/
Dclassobject.h17 vectorcallfunc vectorcall;
Dfuncobject.h35 vectorcallfunc vectorcall;
Ddescrobject.h56 vectorcallfunc vectorcall;
/external/python/cpython3/Doc/c-api/
Dcall.rst68 object structure where a *vectorcallfunc* appears.
71 .. c:type:: PyObject *(*vectorcallfunc)(PyObject *callable, PyObject *const *args, size_t nargsf, P…
151 .. c:function:: vectorcallfunc PyVectorcall_Function(PyObject *op)
167 Call *callable*'s :c:type:`vectorcallfunc` with positional and keyword
368 The arguments are the same as for :c:type:`vectorcallfunc`.
Dtypeobj.rst148 …| :c:member:`~PyTypeObject.tp_vectorcall` | :c:type:`vectorcallfunc` | …
689 instance of a :c:type:`vectorcallfunc` pointer.
691 The *vectorcallfunc* pointer may be ``NULL``, in which case the instance behaves
697 with the *vectorcallfunc* function.
1903 .. c:member:: vectorcallfunc PyTypeObject.tp_vectorcall
/external/python/cpython3/Objects/
Dcall.c110 vectorcallfunc func = PyVectorcall_Function(callable); in _PyObject_FastCallDictTstate()
218 vectorcallfunc func = *(vectorcallfunc *)(((char *)callable) + offset); in PyVectorcall_Call()
Dmethodobject.c47 vectorcallfunc vectorcall; in PyCMethod_New()
Drangeobject.c737 .tp_vectorcall = (vectorcallfunc)range_vectorcall
Ddescrobject.c906 vectorcallfunc vectorcall; in PyDescr_NewMethod()
/external/python/cpython3/Modules/
D_functoolsmodule.c22 vectorcallfunc vectorcall;
223 pto->vectorcall = (vectorcallfunc)partial_vectorcall; in partial_setvectorcall()
D_testcapimodule.c6123 vectorcallfunc vectorcall;
6196 vectorcallfunc vectorcall;