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

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
pymem.h 24 different heaps, and if you use PyMem_Malloc you'll get the memory from the
52 PyAPI_FUNC(void *) PyMem_Malloc(size_t);
62 #define PyMem_MALLOC _PyMem_DebugMalloc
68 /* PyMem_MALLOC(0) means malloc(1). Some systems would return NULL
74 #define PyMem_MALLOC(n) ((size_t)(n) > (size_t)PY_SSIZE_T_MAX ? NULL \
94 ( (type *) PyMem_Malloc((n) * sizeof(type)) ) )
97 ( (type *) PyMem_MALLOC((n) * sizeof(type)) ) )
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
pymem.h 24 different heaps, and if you use PyMem_Malloc you'll get the memory from the
52 PyAPI_FUNC(void *) PyMem_Malloc(size_t);
62 #define PyMem_MALLOC _PyMem_DebugMalloc
68 /* PyMem_MALLOC(0) means malloc(1). Some systems would return NULL
74 #define PyMem_MALLOC(n) ((size_t)(n) > (size_t)PY_SSIZE_T_MAX ? NULL \
94 ( (type *) PyMem_Malloc((n) * sizeof(type)) ) )
97 ( (type *) PyMem_MALLOC((n) * sizeof(type)) ) )
  /external/python/cpython2/Include/
pymem.h 24 different heaps, and if you use PyMem_Malloc you'll get the memory from the
52 PyAPI_FUNC(void *) PyMem_Malloc(size_t);
62 #define PyMem_MALLOC _PyMem_DebugMalloc
68 /* PyMem_MALLOC(0) means malloc(1). Some systems would return NULL
74 #define PyMem_MALLOC(n) ((size_t)(n) > (size_t)PY_SSIZE_T_MAX ? NULL \
94 ( (type *) PyMem_Malloc((n) * sizeof(type)) ) )
97 ( (type *) PyMem_MALLOC((n) * sizeof(type)) ) )
  /prebuilts/gdb/darwin-x86/include/python2.7/
pymem.h 24 different heaps, and if you use PyMem_Malloc you'll get the memory from the
52 PyAPI_FUNC(void *) PyMem_Malloc(size_t);
62 #define PyMem_MALLOC _PyMem_DebugMalloc
68 /* PyMem_MALLOC(0) means malloc(1). Some systems would return NULL
74 #define PyMem_MALLOC(n) ((size_t)(n) > (size_t)PY_SSIZE_T_MAX ? NULL \
94 ( (type *) PyMem_Malloc((n) * sizeof(type)) ) )
97 ( (type *) PyMem_MALLOC((n) * sizeof(type)) ) )
  /prebuilts/gdb/linux-x86/include/python2.7/
pymem.h 24 different heaps, and if you use PyMem_Malloc you'll get the memory from the
52 PyAPI_FUNC(void *) PyMem_Malloc(size_t);
62 #define PyMem_MALLOC _PyMem_DebugMalloc
68 /* PyMem_MALLOC(0) means malloc(1). Some systems would return NULL
74 #define PyMem_MALLOC(n) ((size_t)(n) > (size_t)PY_SSIZE_T_MAX ? NULL \
94 ( (type *) PyMem_Malloc((n) * sizeof(type)) ) )
97 ( (type *) PyMem_MALLOC((n) * sizeof(type)) ) )
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
pymem.h 24 different heaps, and if you use PyMem_Malloc you'll get the memory from the
52 PyAPI_FUNC(void *) PyMem_Malloc(size_t);
62 #define PyMem_MALLOC _PyMem_DebugMalloc
68 /* PyMem_MALLOC(0) means malloc(1). Some systems would return NULL
74 #define PyMem_MALLOC(n) ((size_t)(n) > (size_t)PY_SSIZE_T_MAX ? NULL \
94 ( (type *) PyMem_Malloc((n) * sizeof(type)) ) )
97 ( (type *) PyMem_MALLOC((n) * sizeof(type)) ) )
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
pymem.h 24 different heaps, and if you use PyMem_Malloc you'll get the memory from the
52 PyAPI_FUNC(void *) PyMem_Malloc(size_t);
62 #define PyMem_MALLOC _PyMem_DebugMalloc
68 /* PyMem_MALLOC(0) means malloc(1). Some systems would return NULL
74 #define PyMem_MALLOC(n) ((size_t)(n) > (size_t)PY_SSIZE_T_MAX ? NULL \
94 ( (type *) PyMem_Malloc((n) * sizeof(type)) ) )
97 ( (type *) PyMem_MALLOC((n) * sizeof(type)) ) )

Completed in 1616 milliseconds