Home
last modified time | relevance | path

Searched refs:tp_basicsize (Results 1 – 15 of 15) sorted by relevance

/prebuilts/clang/host/linux-x86/clang-r536225/python3/include/python3.11/cpython/
Dobjimpl.h5 #define _PyObject_SIZE(typeobj) ( (typeobj)->tp_basicsize )
22 _Py_SIZE_ROUND_UP((typeobj)->tp_basicsize + \
Dobject.h151 Py_ssize_t tp_basicsize, tp_itemsize; /* For allocation */ member
/prebuilts/clang/host/linux-x86/clang-r522817/python3/include/python3.11/cpython/
Dobjimpl.h5 #define _PyObject_SIZE(typeobj) ( (typeobj)->tp_basicsize )
22 _Py_SIZE_ROUND_UP((typeobj)->tp_basicsize + \
Dobject.h151 Py_ssize_t tp_basicsize, tp_itemsize; /* For allocation */ member
/prebuilts/clang/host/linux-x86/clang-r530567/python3/include/python3.11/cpython/
Dobjimpl.h5 #define _PyObject_SIZE(typeobj) ( (typeobj)->tp_basicsize )
22 _Py_SIZE_ROUND_UP((typeobj)->tp_basicsize + \
Dobject.h151 Py_ssize_t tp_basicsize, tp_itemsize; /* For allocation */ member
/prebuilts/clang/host/linux-x86/clang-r547379/python3/include/python3.11/cpython/
Dobjimpl.h5 #define _PyObject_SIZE(typeobj) ( (typeobj)->tp_basicsize )
22 _Py_SIZE_ROUND_UP((typeobj)->tp_basicsize + \
Dobject.h151 Py_ssize_t tp_basicsize, tp_itemsize; /* For allocation */ member
/prebuilts/build-tools/common/py3-headers/Include/cpython/
Dobjimpl.h6 return _Py_STATIC_CAST(size_t, type->tp_basicsize); in _PyObject_SIZE()
24 size_t size = _Py_STATIC_CAST(size_t, type->tp_basicsize); in _PyObject_VAR_SIZE()
Dobject.h150 Py_ssize_t tp_basicsize, tp_itemsize; /* For allocation */ member
/prebuilts/clang/host/linux-x86/clang-r547379/python3/include/python3.11/internal/
Dpycore_object.h276 ((PyMemberDef *)(((char *)etype) + Py_TYPE(etype)->tp_basicsize))
/prebuilts/clang/host/linux-x86/clang-r536225/python3/include/python3.11/internal/
Dpycore_object.h276 ((PyMemberDef *)(((char *)etype) + Py_TYPE(etype)->tp_basicsize))
/prebuilts/clang/host/linux-x86/clang-r522817/python3/include/python3.11/internal/
Dpycore_object.h276 ((PyMemberDef *)(((char *)etype) + Py_TYPE(etype)->tp_basicsize))
/prebuilts/clang/host/linux-x86/clang-r530567/python3/include/python3.11/internal/
Dpycore_object.h276 ((PyMemberDef *)(((char *)etype) + Py_TYPE(etype)->tp_basicsize))
/prebuilts/build-tools/common/py3-headers/Include/internal/
Dpycore_object.h745 assert(Py_TYPE(obj)->tp_basicsize == sizeof(PyObject)); in _PyObject_InlineValues()