Searched refs:_PyMem_DebugRawRealloc (Results 1 – 1 of 1) sorted by relevance
/external/python/cpython3/Objects/ |
D | obmalloc.c | 18 static void* _PyMem_DebugRawRealloc(void *ctx, void *ptr, size_t size); 200 …{&_PyMem_Debug.raw, _PyMem_DebugRawMalloc, _PyMem_DebugRawCalloc, _PyMem_DebugRawRealloc, _PyMem_D… 426 alloc.realloc = _PyMem_DebugRawRealloc; in _PyMem_SetupDebugHooksDomain() 2136 _PyMem_DebugRawRealloc(void *ctx, void *p, size_t nbytes) in _PyMem_DebugRawRealloc() function 2260 return _PyMem_DebugRawRealloc(ctx, ptr, nbytes); in _PyMem_DebugRealloc()
|