Home
last modified time | relevance | path

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

/external/python/cpython3/Objects/mimalloc/
Dinit.c168 _mi_heap_main.cookie = _mi_heap_random_next(&_mi_heap_main); in mi_heap_main_init()
169 _mi_heap_main.keys[0] = _mi_heap_random_next(&_mi_heap_main); in mi_heap_main_init()
170 _mi_heap_main.keys[1] = _mi_heap_random_next(&_mi_heap_main); in mi_heap_main_init()
Dheap.c230 heap->cookie = _mi_heap_random_next(heap) | 1; in _mi_heap_init_ex()
231 heap->keys[0] = _mi_heap_random_next(heap); in _mi_heap_init_ex()
232 heap->keys[1] = _mi_heap_random_next(heap); in _mi_heap_init_ex()
257 uintptr_t _mi_heap_random_next(mi_heap_t* heap) { in _mi_heap_random_next() function
Dpage.c562 const uintptr_t r = _mi_heap_random_next(heap); in mi_page_free_list_extend_secure()
699 page->keys[0] = _mi_heap_random_next(heap); in mi_page_init()
700 page->keys[1] = _mi_heap_random_next(heap); in mi_page_init()
805 if (page->capacity < page->reserved && ((_mi_heap_random_next(heap) & 1) == 1)) { in mi_find_free_page()
Dos.c121 uintptr_t r = _mi_heap_random_next(heap); in _mi_os_get_aligned_hint()
563 uintptr_t r = _mi_heap_random_next(heap); in mi_os_claim_huge_pages()
/external/python/cpython3/Include/internal/mimalloc/mimalloc/
Dinternal.h57 uintptr_t _mi_heap_random_next(mi_heap_t* heap);