Home
last modified time | relevance | path

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

/third_party/python/Doc/includes/
Dtypestruct.h9 Py_ssize_t tp_vectorcall_offset; member
/third_party/python/Include/cpython/
Dabstract.h74 offset = tp->tp_vectorcall_offset; in PyVectorcall_Function()
Dobject.h199 Py_ssize_t tp_vectorcall_offset; member
/third_party/python/Doc/c-api/
Dtype.rst259 * :c:member:`~PyTypeObject.tp_vectorcall_offset`
Dstructures.rst464 :c:member:`~PyTypeObject.tp_vectorcall_offset` in type objects.
Dcall.rst67 :c:member:`~PyTypeObject.tp_vectorcall_offset` to the offset inside the
Dtypeobj.rst52 …| :c:member:`~PyTypeObject.tp_vectorcall_offset` | Py_ssize_t | …
703 .. c:member:: Py_ssize_t PyTypeObject.tp_vectorcall_offset
732 The semantics of the ``tp_vectorcall_offset`` slot are provisional and
1182 See :c:member:`~PyTypeObject.tp_vectorcall_offset` for details.
2613 0, /* tp_vectorcall_offset */
/third_party/python/Objects/
Dcall.c236 Py_ssize_t offset = Py_TYPE(callable)->tp_vectorcall_offset; in PyVectorcall_Call()
Dtypeobject.c3556 type->tp_vectorcall_offset = vectorcalloffset; in PyType_FromModuleAndSpec()
5879 COPYSLOT(tp_vectorcall_offset); in inherit_slots()
5969 _PyObject_ASSERT((PyObject *)type, type->tp_vectorcall_offset > 0); in type_ready_checks()
/third_party/python/Modules/
D_testcapimodule.c6519 .tp_vectorcall_offset = offsetof(MethodDescriptorObject, vectorcall),
6559 .tp_vectorcall_offset = offsetof(MethodDescriptor2Object, vectorcall),
/third_party/python/Misc/NEWS.d/
D3.9.0a1.rst974 The slot ``tp_vectorcall_offset`` is inherited unconditionally to support