Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
Dobjimpl.h168 #define _PyObject_SIZE(typeobj) ( (typeobj)->tp_basicsize )
186 ( ( (typeobj)->tp_basicsize + \
Dobject.h327 Py_ssize_t tp_basicsize, tp_itemsize; /* For allocation */ member
433 ((PyMemberDef *)(((char *)etype) + Py_TYPE(etype)->tp_basicsize))
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
Dobjimpl.h168 #define _PyObject_SIZE(typeobj) ( (typeobj)->tp_basicsize )
186 ( ( (typeobj)->tp_basicsize + \
Dobject.h327 Py_ssize_t tp_basicsize, tp_itemsize; /* For allocation */ member
433 ((PyMemberDef *)(((char *)etype) + Py_TYPE(etype)->tp_basicsize))
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dtypeobject.c191 {"__basicsize__", T_PYSSIZET, offsetof(PyTypeObject,tp_basicsize),READONLY},
1755 size_t t_size = type->tp_basicsize; in extra_ivars()
1756 size_t b_size = base->tp_basicsize; in extra_ivars()
1930 (size_t)(Py_TYPE(obj)->tp_basicsize)); in subtype_getweakref()
2406 slotoffset = base->tp_basicsize; in type_new()
2433 type->tp_basicsize = slotoffset; in type_new()
2456 if (!(type->tp_basicsize == sizeof(PyObject) && in type_new()
3032 a->tp_basicsize == b->tp_basicsize && in equiv_structs()
3048 size = base->tp_basicsize; in same_slots_added()
3062 return size == a->tp_basicsize && size == b->tp_basicsize; in same_slots_added()
[all …]
Dstructseq.c500 type->tp_basicsize = sizeof(PyStructSequence)+ in PyStructSequence_InitType()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dtypeobject.c191 {"__basicsize__", T_PYSSIZET, offsetof(PyTypeObject,tp_basicsize),READONLY},
1737 size_t t_size = type->tp_basicsize; in extra_ivars()
1738 size_t b_size = base->tp_basicsize; in extra_ivars()
1912 (size_t)(Py_TYPE(obj)->tp_basicsize)); in subtype_getweakref()
2386 slotoffset = base->tp_basicsize; in type_new()
2413 type->tp_basicsize = slotoffset; in type_new()
2436 if (!(type->tp_basicsize == sizeof(PyObject) && in type_new()
2999 a->tp_basicsize == b->tp_basicsize && in equiv_structs()
3015 size = base->tp_basicsize; in same_slots_added()
3029 return size == a->tp_basicsize && size == b->tp_basicsize; in same_slots_added()
[all …]
Dstructseq.c499 type->tp_basicsize = sizeof(PyStructSequence)+ in PyStructSequence_InitType()
Dtupleobject.c767 res = PyTuple_Type.tp_basicsize + Py_SIZE(self) * sizeof(PyObject *); in tuple_sizeof()
Dlongobject.c4125 res = v->ob_type->tp_basicsize + ABS(Py_SIZE(v))*sizeof(digit); in long_sizeof()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Dsysmodule.c708 res = PyInt_FromSsize_t(PyInstance_Type.tp_basicsize); in sys_getsizeof()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
Dsysmodule.c700 size = PyInstance_Type.tp_basicsize; in _PySys_GetSizeOf()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Objects/
Dlongobject.c4125 res = v->ob_type->tp_basicsize + ABS(Py_SIZE(v))*sizeof(digit); in long_sizeof()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Objects/
Dlongobject.c4151 res = v->ob_type->tp_basicsize + ABS(Py_SIZE(v))*sizeof(digit); in long_sizeof()