Home
last modified time | relevance | path

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

/external/python/cpython3/Objects/
Dobmalloc.c16 static void* _PyMem_DebugRawMalloc(void *ctx, size_t size);
200 …{&_PyMem_Debug.raw, _PyMem_DebugRawMalloc, _PyMem_DebugRawCalloc, _PyMem_DebugRawRealloc, _PyMem_D…
418 if (_PyMem_Raw.malloc == _PyMem_DebugRawMalloc) { in _PyMem_SetupDebugHooksDomain()
424 alloc.malloc = _PyMem_DebugRawMalloc; in _PyMem_SetupDebugHooksDomain()
2079 _PyMem_DebugRawMalloc(void *ctx, size_t nbytes) in _PyMem_DebugRawMalloc() function
2237 return _PyMem_DebugRawMalloc(ctx, nbytes); in _PyMem_DebugMalloc()