Searched refs:tp_vectorcall (Results 1 – 15 of 15) sorted by relevance
/third_party/python/Doc/includes/ |
D | typestruct.h | 82 vectorcallfunc tp_vectorcall; member
|
/third_party/python/Objects/ |
D | boolobject.c | 197 .tp_vectorcall = bool_vectorcall,
|
D | enumobject.c | 478 .tp_vectorcall = (vectorcallfunc)reversed_vectorcall,
|
D | tupleobject.c | 941 .tp_vectorcall = tuple_vectorcall,
|
D | setobject.c | 2131 .tp_vectorcall = set_vectorcall, 2232 .tp_vectorcall = frozenset_vectorcall,
|
D | rangeobject.c | 757 .tp_vectorcall = (vectorcallfunc)range_vectorcall
|
D | floatobject.c | 1968 .tp_vectorcall = (vectorcallfunc)float_vectorcall,
|
D | listobject.c | 3083 .tp_vectorcall = list_vectorcall,
|
D | typeobject.c | 4331 offsetof(PyTypeObject, tp_vectorcall), /* tp_vectorcall_offset */ 4368 .tp_vectorcall = type_vectorcall,
|
D | dictobject.c | 3576 .tp_vectorcall = dict_vectorcall,
|
/third_party/python/Include/cpython/ |
D | object.h | 272 vectorcallfunc tp_vectorcall; member
|
/third_party/python/Doc/c-api/ |
D | type.rst | 254 * :c:member:`~PyTypeObject.tp_vectorcall`
|
D | typeobj.rst | 148 …| :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/ |
D | bltinmodule.c | 679 .tp_vectorcall = (vectorcallfunc)filter_vectorcall 1432 .tp_vectorcall = (vectorcallfunc)map_vectorcall
|
/third_party/python/Misc/NEWS.d/ |
D | 3.9.0a1.rst | 5660 ``tp_vectorcall`` to a vectorcall function to be used instead of ``tp_new``
|