Home
last modified time | relevance | path

Searched refs:PyObject_GetTypeData (Results 1 – 12 of 12) sorted by relevance

/external/python/cpython3/Modules/_testlimitedcapi/
Dheaptype_relative.c55 char *data_ptr = PyObject_GetTypeData(instance, (PyTypeObject *)sub); in make_sized_heaptypes()
80 void *data_ptr = PyObject_GetTypeData(self, defining_class); in var_heaptype_set_data_to_3s()
96 void *data_ptr = PyObject_GetTypeData(self, defining_class); in var_heaptype_get_data()
/external/python/cpython3/Modules/_ctypes/
Dctypes.h466 StgInfo *info = PyObject_GetTypeData((PyObject *)type, state->PyCType_Type); in _stginfo_from_type()
521 StgInfo *info = PyObject_GetTypeData((PyObject *)type, state->PyCType_Type); in PyStgInfo_Init()
/external/python/cpython3/Include/
Dobject.h534 PyAPI_FUNC(void *) PyObject_GetTypeData(PyObject *obj, PyTypeObject *cls);
/external/python/cpython3/Doc/c-api/
Dobject.rst522 .. c:function:: void *PyObject_GetTypeData(PyObject *o, PyTypeObject *cls)
537 memory :c:func:`PyObject_GetTypeData` returns.
Dtype.rst413 Use :c:func:`PyObject_GetTypeData` to get a pointer to subclass-specific
/external/python/cpython3/PC/
Dpython3dll.c494 EXPORT_FUNC(PyObject_GetTypeData)
/external/python/cpython3/Doc/data/
Dstable_abi.dat536 func,PyObject_GetTypeData,3.12,,
Dpython3.13.abi600 …<elf-symbol name='PyObject_GetTypeData' type='func-type' binding='global-binding' visibility='defa…
9956PyObject_GetTypeData' mangled-name='PyObject_GetTypeData' filepath='Objects/typeobject.c' line='50…
/external/python/cpython3/Misc/
Dstable_abi.toml2422 [function.PyObject_GetTypeData]
/external/python/cpython3/Misc/NEWS.d/
D3.12.0b1.rst2353 :c:func:`PyObject_GetTypeData` can be used to get subclass-specific data,
/external/python/cpython3/Doc/whatsnew/
D3.12.rst1863 - :c:func:`PyObject_GetTypeData` and :c:func:`PyType_GetTypeDataSize`
/external/python/cpython3/Objects/
Dtypeobject.c5041 PyObject_GetTypeData(PyObject *obj, PyTypeObject *cls) in PyObject_GetTypeData() function