Home
last modified time | relevance | path

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

/third_party/python/Include/cpython/
Dabstract.h61 static inline vectorcallfunc
66 vectorcallfunc ptr; in PyVectorcall_Function()
103 vectorcallfunc func; in _PyObject_VectorcallTstate()
Dmethodobject.h29 vectorcallfunc vectorcall;
Dobject.h67 typedef PyObject *(*vectorcallfunc)(PyObject *callable, PyObject *const *args, typedef
272 vectorcallfunc tp_vectorcall;
/third_party/python/Include/
Dclassobject.h17 vectorcallfunc vectorcall;
Ddescrobject.h56 vectorcallfunc vectorcall;
Dfuncobject.h44 vectorcallfunc vectorcall;
/third_party/python/Doc/includes/
Dtypestruct.h82 vectorcallfunc tp_vectorcall;
/third_party/python/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` | …
712 instance of a :c:type:`vectorcallfunc` pointer.
714 The *vectorcallfunc* pointer may be ``NULL``, in which case the instance behaves
720 with the *vectorcallfunc* function.
2011 .. c:member:: vectorcallfunc PyTypeObject.tp_vectorcall
/third_party/python/Objects/
Dcall.c134 vectorcallfunc func = PyVectorcall_Function(callable); in _PyObject_FastCallDictTstate()
232 vectorcallfunc func; in PyVectorcall_Call()
Denumobject.c478 .tp_vectorcall = (vectorcallfunc)reversed_vectorcall,
Dmethodobject.c47 vectorcallfunc vectorcall; in PyCMethod_New()
Drangeobject.c757 .tp_vectorcall = (vectorcallfunc)range_vectorcall
Ddescrobject.c904 vectorcallfunc vectorcall; in PyDescr_NewMethod()
Dfloatobject.c1968 .tp_vectorcall = (vectorcallfunc)float_vectorcall,
/third_party/python/Modules/
D_functoolsmodule.c42 vectorcallfunc vectorcall;
279 pto->vectorcall = (vectorcallfunc)partial_vectorcall; in partial_setvectorcall()
D_testcapimodule.c6468 vectorcallfunc vectorcall;
6541 vectorcallfunc vectorcall;
/third_party/python/Python/
Dbltinmodule.c679 .tp_vectorcall = (vectorcallfunc)filter_vectorcall
1432 .tp_vectorcall = (vectorcallfunc)map_vectorcall