Home
last modified time | relevance | path

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

/external/python/cpython3/Objects/
Dobmalloc.c207 static PyMemAllocatorEx _PyMem_Raw = PYDBGRAW_ALLOC; variable
211 static PyMemAllocatorEx _PyMem_Raw = PYRAW_ALLOC; variable
329 if (pymemallocator_eq(&_PyMem_Raw, &malloc_alloc) && in _PyMem_GetAllocatorsName()
336 if (pymemallocator_eq(&_PyMem_Raw, &malloc_alloc) && in _PyMem_GetAllocatorsName()
348 if (pymemallocator_eq(&_PyMem_Raw, &dbg_raw) && in _PyMem_GetAllocatorsName()
418 if (_PyMem_Raw.malloc == _PyMem_DebugRawMalloc) { in _PyMem_SetupDebugHooksDomain()
472 case PYMEM_DOMAIN_RAW: *allocator = _PyMem_Raw; break; in PyMem_GetAllocator()
490 case PYMEM_DOMAIN_RAW: _PyMem_Raw = *allocator; break; in PyMem_SetAllocator()
520 return _PyMem_Raw.malloc(_PyMem_Raw.ctx, size); in PyMem_RawMalloc()
529 return _PyMem_Raw.calloc(_PyMem_Raw.ctx, nelem, elsize); in PyMem_RawCalloc()
[all …]