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.c24 static void* _PyMem_DebugRealloc(void *ctx, void *ptr, size_t size);
209 … {&_PyMem_Debug.mem, _PyMem_DebugMalloc, _PyMem_DebugCalloc, _PyMem_DebugRealloc, _PyMem_DebugFree}
211 … {&_PyMem_Debug.obj, _PyMem_DebugMalloc, _PyMem_DebugCalloc, _PyMem_DebugRealloc, _PyMem_DebugFree}
491 alloc.realloc = _PyMem_DebugRealloc; in _PyMem_SetupDebugHooksDomain()
504 alloc.realloc = _PyMem_DebugRealloc; in _PyMem_SetupDebugHooksDomain()
2350 _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