Home
last modified time | relevance | path

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

/external/python/cpython3/Objects/
Dobmalloc.c17 static void* _PyMem_DebugRawMalloc(void *ctx, size_t size);
207 …{&_PyMem_Debug.raw, _PyMem_DebugRawMalloc, _PyMem_DebugRawCalloc, _PyMem_DebugRawRealloc, _PyMem_D…
470 if (_PyMem_Raw.malloc == _PyMem_DebugRawMalloc) { in _PyMem_SetupDebugHooksDomain()
476 alloc.malloc = _PyMem_DebugRawMalloc; in _PyMem_SetupDebugHooksDomain()
2151 _PyMem_DebugRawMalloc(void *ctx, size_t nbytes) in _PyMem_DebugRawMalloc() function
2303 return _PyMem_DebugRawMalloc(ctx, nbytes); in _PyMem_DebugMalloc()