Lines Matching refs:malloc_alloc
330 PyMemAllocatorEx malloc_alloc = MALLOC_ALLOC; in _PyMem_SetupAllocators() local
331 PyMem_SetAllocator(PYMEM_DOMAIN_RAW, &malloc_alloc); in _PyMem_SetupAllocators()
347 PyMemAllocatorEx malloc_alloc = MALLOC_ALLOC; in _PyMem_SetupAllocators() local
348 PyMem_SetAllocator(PYMEM_DOMAIN_RAW, &malloc_alloc); in _PyMem_SetupAllocators()
349 PyMem_SetAllocator(PYMEM_DOMAIN_MEM, &malloc_alloc); in _PyMem_SetupAllocators()
350 PyMem_SetAllocator(PYMEM_DOMAIN_OBJ, &malloc_alloc); in _PyMem_SetupAllocators()
376 PyMemAllocatorEx malloc_alloc = MALLOC_ALLOC; in _PyMem_GetCurrentAllocatorName() local
381 if (pymemallocator_eq(&_PyMem_Raw, &malloc_alloc) && in _PyMem_GetCurrentAllocatorName()
382 pymemallocator_eq(&_PyMem, &malloc_alloc) && in _PyMem_GetCurrentAllocatorName()
383 pymemallocator_eq(&_PyObject, &malloc_alloc)) in _PyMem_GetCurrentAllocatorName()
388 if (pymemallocator_eq(&_PyMem_Raw, &malloc_alloc) && in _PyMem_GetCurrentAllocatorName()
405 if (pymemallocator_eq(&_PyMem_Debug.raw.alloc, &malloc_alloc) && in _PyMem_GetCurrentAllocatorName()
406 pymemallocator_eq(&_PyMem_Debug.mem.alloc, &malloc_alloc) && in _PyMem_GetCurrentAllocatorName()
407 pymemallocator_eq(&_PyMem_Debug.obj.alloc, &malloc_alloc)) in _PyMem_GetCurrentAllocatorName()
412 if (pymemallocator_eq(&_PyMem_Debug.raw.alloc, &malloc_alloc) && in _PyMem_GetCurrentAllocatorName()