HomeSort by relevance Sort by last modified time
    Searched defs:_PyObject_VAR_SIZE (Results 1 - 9 of 9) 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)) ),\
  /prebuilts/gdb/darwin-x86/include/python2.7/
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)) ),\
  /prebuilts/gdb/linux-x86/include/python2.7/
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)) ),\
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
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)) ),\
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
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/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 444 def _PyObject_VAR_SIZE(typeobj, nitems):
445 if _PyObject_VAR_SIZE._type_size_t is None:
446 _PyObject_VAR_SIZE._type_size_t = gdb.lookup_type('size_t')
452 ).cast(_PyObject_VAR_SIZE._type_size_t)
453 _PyObject_VAR_SIZE._type_size_t = None
472 size = _PyObject_VAR_SIZE(typeobj, tsize)
    [all...]

Completed in 228 milliseconds