OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:PyMem_MALLOC
(Results
1 - 2
of
2
) 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)) ) )
/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 569 milliseconds