Home
last modified time | relevance | path

Searched refs:_PyMem_DebugRealloc (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython2/Include/
Dpymem.h63 #define PyMem_REALLOC _PyMem_DebugRealloc
Dobjimpl.h116 PyAPI_FUNC(void *) _PyMem_DebugRealloc(void *p, size_t nbytes);
/external/python/cpython3/Objects/
Dobmalloc.c23 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/
Dobmalloc.c1447 _PyMem_DebugRealloc(void *p, size_t nbytes) in _PyMem_DebugRealloc() function