HomeSort by relevance Sort by last modified time
    Searched defs:_PyObject_VAR_SIZE (Results 1 - 7 of 7) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
objimpl.h 170 /* _PyObject_VAR_SIZE returns the number of bytes (as size_t) allocated for a
181 # error "_PyObject_VAR_SIZE requires SIZEOF_VOID_P be a power of 2"
184 #define _PyObject_VAR_SIZE(typeobj, nitems) \
198 (PyVarObject *) PyObject_MALLOC(_PyObject_VAR_SIZE((typeobj),(n)) ),\
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
objimpl.h 170 /* _PyObject_VAR_SIZE returns the number of bytes (as size_t) allocated for a
181 # error "_PyObject_VAR_SIZE requires SIZEOF_VOID_P be a power of 2"
184 #define _PyObject_VAR_SIZE(typeobj, nitems) \
198 (PyVarObject *) PyObject_MALLOC(_PyObject_VAR_SIZE((typeobj),(n)) ),\
  /external/python/cpython2/Include/
objimpl.h 170 /* _PyObject_VAR_SIZE returns the number of bytes (as size_t) allocated for a
181 # error "_PyObject_VAR_SIZE requires SIZEOF_VOID_P be a power of 2"
184 #define _PyObject_VAR_SIZE(typeobj, nitems) \
198 (PyVarObject *) PyObject_MALLOC(_PyObject_VAR_SIZE((typeobj),(n)) ),\
  /external/python/cpython3/Include/
objimpl.h 150 /* _PyObject_VAR_SIZE returns the number of bytes (as size_t) allocated for a
161 # error "_PyObject_VAR_SIZE requires SIZEOF_VOID_P be a power of 2"
164 #define _PyObject_VAR_SIZE(typeobj, nitems) \
175 (PyVarObject *) PyObject_MALLOC(_PyObject_VAR_SIZE((typeobj),(n)) ),\
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/gdb/
libpython.py 412 def _PyObject_VAR_SIZE(typeobj, nitems):
436 size = _PyObject_VAR_SIZE(typeobj, tsize)
    [all...]
  /external/python/cpython2/Tools/gdb/
libpython.py 448 def _PyObject_VAR_SIZE(typeobj, nitems):
449 if _PyObject_VAR_SIZE._type_size_t is None:
450 _PyObject_VAR_SIZE._type_size_t = gdb.lookup_type('size_t')
456 ).cast(_PyObject_VAR_SIZE._type_size_t)
457 _PyObject_VAR_SIZE._type_size_t = None
476 size = _PyObject_VAR_SIZE(typeobj, tsize)
    [all...]
  /external/python/cpython3/Tools/gdb/
libpython.py 476 def _PyObject_VAR_SIZE(typeobj, nitems):
477 if _PyObject_VAR_SIZE._type_size_t is None:
478 _PyObject_VAR_SIZE._type_size_t = gdb.lookup_type('size_t')
484 ).cast(_PyObject_VAR_SIZE._type_size_t)
485 _PyObject_VAR_SIZE._type_size_t = None
504 size = _PyObject_VAR_SIZE(typeobj, tsize)
    [all...]

Completed in 1020 milliseconds