Home
last modified time | relevance | path

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

/oneTBB/src/tbb/
H A Dthreading_control.cpp74 …unique_ptr<thread_dispatcher> threading_control_impl::make_thread_dispatcher(threading_control& tc, in make_thread_dispatcher() argument
81 make_cache_aligned_unique<thread_dispatcher>(tc, workers_hard_limit, stack_size); in make_thread_dispatcher()
91 threading_control_impl::threading_control_impl(threading_control* tc) { in threading_control_impl() argument
96 my_thread_dispatcher = make_thread_dispatcher(*tc, workers_soft_limit, workers_hard_limit); in threading_control_impl()
H A Dthread_dispatcher.cpp24 thread_dispatcher::thread_dispatcher(threading_control& tc, unsigned hard_limit, std::size_t stack_… in thread_dispatcher() argument
25 : my_threading_control(tc) in thread_dispatcher()
H A Dthread_dispatcher.h41 thread_dispatcher(threading_control& tc, unsigned hard_limit, std::size_t stack_size);
H A Darena.cpp140 threading_control* tc = my_threading_control; in on_thread_leaving() local
141 auto tc_client_snapshot = tc->prepare_client_destruction(my_tc_client); in on_thread_leaving()
146 if (tc->try_destroy_client(tc_client_snapshot)) { in on_thread_leaving()
/oneTBB/test/common/
H A Ddoctest.h5513 tc = &in;
6021 const TestCaseData* tc;
6088 file_line_to_stream(tc->m_file.c_str(), tc->m_line, "\n");
6089 if(tc->m_description)
6091 if(tc->m_test_suite && tc->m_test_suite[0] != '\0')
6357 if(tc->m_no_output)
6395 if(tc->m_no_output)
6400 file_line_to_stream(tc->m_file.c_str(), tc->m_line, " ");
6446 if(tc->m_no_output)
6969 const auto& tc = *curr;
[all …]
/oneTBB/include/oneapi/tbb/detail/
H A D_concurrent_queue_base.h469 ticket_type tc = tail_counter.load(std::memory_order_acquire); in empty() local
472 return tc == tail_counter.load(std::memory_order_relaxed) && in empty()
473 std::ptrdiff_t(tc - hc - n_invalid_entries.load(std::memory_order_relaxed)) <= 0; in empty()
479 std::ptrdiff_t tc = tail_counter.load(std::memory_order_relaxed); in size() local
482 return tc - hc - nie; in size()
/oneTBB/test/conformance/
H A Dconformance_concurrent_queue.cpp875 long tc = MaxFooCount; in TestExceptionBody() local
880 for( int k=0; k<(int)tc; k++ ) { in TestExceptionBody()
902 MaxFooCount = tc; in TestExceptionBody()