Home
last modified time | relevance | path

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

/oneTBB/src/tbb/
H A Darena.h55 task_dispatcher** my_co_scheduler_cache; variable
72 return my_co_scheduler_cache[prev_index()] == nullptr; in internal_empty()
83 my_co_scheduler_cache = (task_dispatcher**)cache_aligned_allocate(alloc_size); in init()
84 std::memset( my_co_scheduler_cache, 0, alloc_size ); in init()
93 cache_aligned_deallocate(my_co_scheduler_cache); in cleanup()
103 if (my_co_scheduler_cache[my_head] != nullptr) { in push()
104 to_cleanup = my_co_scheduler_cache[my_head]; in push()
107 my_co_scheduler_cache[my_head] = s; in push()
127 task_dispatcher* to_return = my_co_scheduler_cache[my_head]; in pop()
129 my_co_scheduler_cache[my_head] = nullptr; in pop()