Home
last modified time | relevance | path

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

/external/python/cpython3/Objects/
Dobmalloc.c17 static void* _PyMem_DebugRawCalloc(void *ctx, size_t nelem, size_t elsize);
200 …{&_PyMem_Debug.raw, _PyMem_DebugRawMalloc, _PyMem_DebugRawCalloc, _PyMem_DebugRawRealloc, _PyMem_D…
425 alloc.calloc = _PyMem_DebugRawCalloc; in _PyMem_SetupDebugHooksDomain()
2085 _PyMem_DebugRawCalloc(void *ctx, size_t nelem, size_t elsize) in _PyMem_DebugRawCalloc() function
2244 return _PyMem_DebugRawCalloc(ctx, nelem, elsize); in _PyMem_DebugCalloc()