Searched refs:_PyObject_VAR_SIZE (Results 1 – 9 of 9) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/ |
D | objimpl.h | 184 #define _PyObject_VAR_SIZE(typeobj, nitems) \ macro 198 (PyVarObject *) PyObject_MALLOC(_PyObject_VAR_SIZE((typeobj),(n)) ),\
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/ |
D | objimpl.h | 184 #define _PyObject_VAR_SIZE(typeobj, nitems) \ macro 198 (PyVarObject *) PyObject_MALLOC(_PyObject_VAR_SIZE((typeobj),(n)) ),\
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/ |
D | gcmodule.c | 1530 const size_t size = _PyObject_VAR_SIZE(tp, nitems); in _PyObject_GC_NewVar() 1540 const size_t basicsize = _PyObject_VAR_SIZE(Py_TYPE(op), nitems); in _PyObject_GC_Resize()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/ |
D | gcmodule.c | 1476 const size_t size = _PyObject_VAR_SIZE(tp, nitems); in _PyObject_GC_NewVar() 1486 const size_t basicsize = _PyObject_VAR_SIZE(Py_TYPE(op), nitems); in _PyObject_GC_Resize()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/gdb/ |
D | libpython.py | 412 def _PyObject_VAR_SIZE(typeobj, nitems): function 436 size = _PyObject_VAR_SIZE(typeobj, tsize)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/ |
D | object.c | 254 const size_t size = _PyObject_VAR_SIZE(tp, nitems); in _PyObject_NewVar() 1287 size = _PyObject_VAR_SIZE(tp, tsize); in _PyObject_GetDictPtr() 1409 size = _PyObject_VAR_SIZE(tp, tsize); in _PyObject_GenericGetAttrWithDict()
|
D | typeobject.c | 749 const size_t size = _PyObject_VAR_SIZE(type, nitems+1); in PyType_GenericAlloc()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/ |
D | object.c | 254 const size_t size = _PyObject_VAR_SIZE(tp, nitems); in _PyObject_NewVar() 1294 size = _PyObject_VAR_SIZE(tp, tsize); in _PyObject_GetDictPtr() 1416 size = _PyObject_VAR_SIZE(tp, tsize); in _PyObject_GenericGetAttrWithDict()
|
D | typeobject.c | 757 const size_t size = _PyObject_VAR_SIZE(type, nitems+1); in PyType_GenericAlloc()
|