Searched refs:_PyMem_DebugRawCalloc (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython3/Include/internal/ |
D | pycore_pymem_init.h | 47 extern void* _PyMem_DebugRawCalloc(void *, size_t, size_t); 57 …{&(runtime).allocators.debug.raw, _PyMem_DebugRawMalloc, _PyMem_DebugRawCalloc, _PyMem_DebugRawRea…
|
/external/python/cpython3/Objects/ |
D | obmalloc.c | 331 void* _PyMem_DebugRawCalloc(void *ctx, size_t nelem, size_t elsize); 341 …{&_PyRuntime.allocators.debug.raw, _PyMem_DebugRawMalloc, _PyMem_DebugRawCalloc, _PyMem_DebugRawRe… 788 alloc.calloc = _PyMem_DebugRawCalloc; in set_up_debug_hooks_domain_unlocked() 2731 _PyMem_DebugRawCalloc(void *ctx, size_t nelem, size_t elsize) in _PyMem_DebugRawCalloc() function 2891 return _PyMem_DebugRawCalloc(ctx, nelem, elsize); in _PyMem_DebugCalloc()
|