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

  /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)) ) )
objimpl.h 132 #define PyObject_MALLOC PyMem_MALLOC
  /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)) ) )
objimpl.h 132 #define PyObject_MALLOC PyMem_MALLOC

Completed in 187 milliseconds