Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_alloc.cpp2106 ptr = this_thr->th.th_free_lists[index].th_free_list_self; in ___kmp_fast_allocate()
2109 this_thr->th.th_free_lists[index].th_free_list_self = *((void **)ptr); in ___kmp_fast_allocate()
2115 ptr = TCR_SYNC_PTR(this_thr->th.th_free_lists[index].th_free_list_sync); in ___kmp_fast_allocate()
2121 &this_thr->th.th_free_lists[index].th_free_list_sync, ptr, nullptr)) { in ___kmp_fast_allocate()
2123 ptr = TCR_SYNC_PTR(this_thr->th.th_free_lists[index].th_free_list_sync); in ___kmp_fast_allocate()
2127 this_thr->th.th_free_lists[index].th_free_list_self = *((void **)ptr); in ___kmp_fast_allocate()
2200 *((void **)ptr) = this_thr->th.th_free_lists[index].th_free_list_self; in ___kmp_fast_free()
2201 this_thr->th.th_free_lists[index].th_free_list_self = ptr; in ___kmp_fast_free()
2203 void *head = this_thr->th.th_free_lists[index].th_free_list_other; in ___kmp_fast_free()
2206 this_thr->th.th_free_lists[index].th_free_list_other = ptr; in ___kmp_fast_free()
[all …]
H A Dkmp.h3057 kmp_free_list_t th_free_lists[NUM_LISTS]; // Free lists for fast memory member