Searched refs:_PyMem_DebugRawCalloc (Results 1 – 1 of 1) sorted by relevance
/external/python/cpython3/Objects/ |
D | obmalloc.c | 18 static void* _PyMem_DebugRawCalloc(void *ctx, size_t nelem, size_t elsize); 207 …{&_PyMem_Debug.raw, _PyMem_DebugRawMalloc, _PyMem_DebugRawCalloc, _PyMem_DebugRawRealloc, _PyMem_D… 477 alloc.calloc = _PyMem_DebugRawCalloc; in _PyMem_SetupDebugHooksDomain() 2182 _PyMem_DebugRawCalloc(void *ctx, size_t nelem, size_t elsize) in _PyMem_DebugRawCalloc() function 2337 return _PyMem_DebugRawCalloc(ctx, nelem, elsize); in _PyMem_DebugCalloc()
|