Home
last modified time | relevance | path

Searched refs:tp_vectorcall (Results 1 – 15 of 15) sorted by relevance

/third_party/python/Doc/includes/
Dtypestruct.h82 vectorcallfunc tp_vectorcall; member
/third_party/python/Objects/
Dboolobject.c197 .tp_vectorcall = bool_vectorcall,
Denumobject.c478 .tp_vectorcall = (vectorcallfunc)reversed_vectorcall,
Dtupleobject.c941 .tp_vectorcall = tuple_vectorcall,
Dsetobject.c2131 .tp_vectorcall = set_vectorcall,
2232 .tp_vectorcall = frozenset_vectorcall,
Drangeobject.c757 .tp_vectorcall = (vectorcallfunc)range_vectorcall
Dfloatobject.c1968 .tp_vectorcall = (vectorcallfunc)float_vectorcall,
Dlistobject.c3083 .tp_vectorcall = list_vectorcall,
Dtypeobject.c4331 offsetof(PyTypeObject, tp_vectorcall), /* tp_vectorcall_offset */
4368 .tp_vectorcall = type_vectorcall,
Ddictobject.c3576 .tp_vectorcall = dict_vectorcall,
/third_party/python/Include/cpython/
Dobject.h272 vectorcallfunc tp_vectorcall; member
/third_party/python/Doc/c-api/
Dtype.rst254 * :c:member:`~PyTypeObject.tp_vectorcall`
Dtypeobj.rst148 …| :c:member:`~PyTypeObject.tp_vectorcall` | :c:type:`vectorcallfunc` | …
2011 .. c:member:: vectorcallfunc PyTypeObject.tp_vectorcall
2016 If ``tp_vectorcall`` is ``NULL``, the default call implementation
/third_party/python/Python/
Dbltinmodule.c679 .tp_vectorcall = (vectorcallfunc)filter_vectorcall
1432 .tp_vectorcall = (vectorcallfunc)map_vectorcall
/third_party/python/Misc/NEWS.d/
D3.9.0a1.rst5660 ``tp_vectorcall`` to a vectorcall function to be used instead of ``tp_new``