Home
last modified time | relevance | path

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

/external/python/cpython3/Include/internal/
Dpycore_object_alloc.h44 m->current_object_heap = _PyObject_GetAllocationHeap(tstate, tp); in _PyObject_MallocWithType()
48 m->current_object_heap = &m->heaps[_Py_MIMALLOC_HEAP_OBJECT]; in _PyObject_MallocWithType()
59 m->current_object_heap = _PyObject_GetAllocationHeap(tstate, tp); in _PyObject_ReallocWithType()
63 m->current_object_heap = &m->heaps[_Py_MIMALLOC_HEAP_OBJECT]; in _PyObject_ReallocWithType()
Dpycore_mimalloc.h61 mi_heap_t *current_object_heap; member
/external/python/cpython3/Objects/
Dobmalloc.c249 mi_heap_t *heap = tstate->mimalloc.current_object_heap; in _PyObject_MiMalloc()
261 mi_heap_t *heap = tstate->mimalloc.current_object_heap; in _PyObject_MiCalloc()
274 mi_heap_t *heap = tstate->mimalloc.current_object_heap; in _PyObject_MiRealloc()
2619 debug_offset = tstate->mimalloc.current_object_heap->debug_offset; in fill_mem_debug()
/external/python/cpython3/Python/
Dpystate.c3093 mts->current_object_heap = &mts->heaps[_Py_MIMALLOC_HEAP_OBJECT]; in tstate_mimalloc_bind()