Searched refs:tp_vectorcall_offset (Results 1 – 11 of 11) sorted by relevance
9 Py_ssize_t tp_vectorcall_offset; member
74 offset = tp->tp_vectorcall_offset; in PyVectorcall_Function()
199 Py_ssize_t tp_vectorcall_offset; member
259 * :c:member:`~PyTypeObject.tp_vectorcall_offset`
464 :c:member:`~PyTypeObject.tp_vectorcall_offset` in type objects.
67 :c:member:`~PyTypeObject.tp_vectorcall_offset` to the offset inside the
52 …| :c:member:`~PyTypeObject.tp_vectorcall_offset` | Py_ssize_t | …703 .. c:member:: Py_ssize_t PyTypeObject.tp_vectorcall_offset732 The semantics of the ``tp_vectorcall_offset`` slot are provisional and1182 See :c:member:`~PyTypeObject.tp_vectorcall_offset` for details.2613 0, /* tp_vectorcall_offset */
236 Py_ssize_t offset = Py_TYPE(callable)->tp_vectorcall_offset; in PyVectorcall_Call()
3556 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()
6519 .tp_vectorcall_offset = offsetof(MethodDescriptorObject, vectorcall),6559 .tp_vectorcall_offset = offsetof(MethodDescriptor2Object, vectorcall),
974 The slot ``tp_vectorcall_offset`` is inherited unconditionally to support