Searched refs:_PyMem_DebugRealloc (Results 1 – 4 of 4) sorted by relevance
/external/python/cpython2/Include/ |
D | pymem.h | 63 #define PyMem_REALLOC _PyMem_DebugRealloc
|
D | objimpl.h | 116 PyAPI_FUNC(void *) _PyMem_DebugRealloc(void *p, size_t nbytes);
|
/external/python/cpython3/Objects/ |
D | obmalloc.c | 23 static void* _PyMem_DebugRealloc(void *ctx, void *ptr, size_t size); 202 … {&_PyMem_Debug.mem, _PyMem_DebugMalloc, _PyMem_DebugCalloc, _PyMem_DebugRealloc, _PyMem_DebugFree} 204 … {&_PyMem_Debug.obj, _PyMem_DebugMalloc, _PyMem_DebugCalloc, _PyMem_DebugRealloc, _PyMem_DebugFree} 439 alloc.realloc = _PyMem_DebugRealloc; in _PyMem_SetupDebugHooksDomain() 452 alloc.realloc = _PyMem_DebugRealloc; in _PyMem_SetupDebugHooksDomain() 2257 _PyMem_DebugRealloc(void *ctx, void *ptr, size_t nbytes) in _PyMem_DebugRealloc() function
|
/external/python/cpython2/Objects/ |
D | obmalloc.c | 1447 _PyMem_DebugRealloc(void *p, size_t nbytes) in _PyMem_DebugRealloc() function
|