Home
last modified time | relevance | path

Searched refs:tp_vectorcall_offset (Results 1 – 11 of 11) sorted by relevance

/external/python/cpython3/Doc/includes/
Dtypestruct.h9 Py_ssize_t tp_vectorcall_offset; member
/external/python/cpython3/Include/cpython/
Dabstract.h78 offset = tp->tp_vectorcall_offset; in PyVectorcall_Function()
Dobject.h201 Py_ssize_t tp_vectorcall_offset; member
/external/python/cpython3/Doc/c-api/
Dtype.rst242 * :c:member:`~PyTypeObject.tp_vectorcall_offset`
Dcall.rst67 :c:member:`~PyTypeObject.tp_vectorcall_offset` to the offset inside the
Dstructures.rst431 :c:member:`~PyTypeObject.tp_vectorcall_offset` in type objects.
Dtypeobj.rst52 …| :c:member:`~PyTypeObject.tp_vectorcall_offset` | Py_ssize_t | …
680 .. c:member:: Py_ssize_t PyTypeObject.tp_vectorcall_offset
709 The semantics of the ``tp_vectorcall_offset`` slot are provisional and
1160 See :c:member:`~PyTypeObject.tp_vectorcall_offset` for details.
2481 0, /* tp_vectorcall_offset */
/external/python/cpython3/Objects/
Dcall.c211 Py_ssize_t offset = Py_TYPE(callable)->tp_vectorcall_offset; in PyVectorcall_Call()
Dtypeobject.c3048 type->tp_vectorcall_offset = vectorcalloffset; in PyType_FromModuleAndSpec()
5299 COPYSLOT(tp_vectorcall_offset); in inherit_slots()
5391 _PyObject_ASSERT((PyObject *)type, type->tp_vectorcall_offset > 0); in PyType_Ready()
/external/python/cpython3/Modules/
D_testcapimodule.c6174 .tp_vectorcall_offset = offsetof(MethodDescriptorObject, vectorcall),
6214 .tp_vectorcall_offset = offsetof(MethodDescriptor2Object, vectorcall),
/external/python/cpython3/Misc/NEWS.d/
D3.9.0a1.rst974 The slot ``tp_vectorcall_offset`` is inherited unconditionally to support