Home
last modified time | relevance | path

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

/aosp_15_r20/external/python/cpython3/Objects/
Dobmalloc.c21 static void* _PyMem_DebugRawRealloc(void *ctx, void *ptr, size_t size);
209 …{&_PyMem_Debug.raw, _PyMem_DebugRawMalloc, _PyMem_DebugRawCalloc, _PyMem_DebugRawRealloc, _PyMem_D…
480 alloc.realloc = _PyMem_DebugRawRealloc; in _PyMem_SetupDebugHooksDomain()
2580 _PyMem_DebugRawRealloc(void *ctx, void *p, size_t nbytes) in _PyMem_DebugRawRealloc() function
2716 return _PyMem_DebugRawRealloc(ctx, ptr, nbytes); in _PyMem_DebugRealloc()