Home
last modified time | relevance | path

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

/oneTBB/doc/
H A DDoxyfile.in2128 # The TAGFILES tag can be used to specify one or more tag files. For each tag
2226 # This tag requires that the tag HAVE_DOT is set to YES.
2236 # This tag requires that the tag HAVE_DOT is set to YES.
2243 # This tag requires that the tag HAVE_DOT is set to YES.
2250 # This tag requires that the tag HAVE_DOT is set to YES.
2258 # This tag requires that the tag HAVE_DOT is set to YES.
2267 # This tag requires that the tag HAVE_DOT is set to YES.
2274 # This tag requires that the tag HAVE_DOT is set to YES.
2282 # This tag requires that the tag HAVE_DOT is set to YES.
2295 # This tag requires that the tag HAVE_DOT is set to YES.
[all …]
/oneTBB/test/tbb/
H A Dtest_resumable_tasks.cpp70 tbb::task::suspend_point tag; in asyncLoop() local
75 tag = async->m_tagQueue.front(); in asyncLoop()
78 if (!tag) { in asyncLoop()
81 tbb::task::resume(tag); in asyncLoop()
95 void operator()(tbb::task::suspend_point tag) { in operator ()()
97 m_asyncActivity.submit(tag); in operator ()()
218 tbb::task::suspend_point tag; in asyncLoop() local
223 tag = async->m_tagQueue.front(); in asyncLoop()
226 if (!tag) { in asyncLoop()
231 tbb::task::resume(tag); in asyncLoop()
[all …]
H A Dtest_tagged_msg.cpp142 CHECK_MESSAGE( (j.tag() == 2), "Error retrieving tag for j"); in RunTests()
144 CHECK_MESSAGE( (j.tag() == 10), "Error updating tag for j"); in RunTests()
148 CHECK_MESSAGE( (k.tag() == 'b'), "Error updating char tag"); in RunTests()
H A Dtest_task.cpp350 suspended_task(tbb::task::suspend_point tag, tbb::detail::d1::wait_context& wait) in suspended_task()
351 : my_suspend_tag(tag), my_wait(wait) in suspended_task()
401 … tbb::task::suspend([&wait, &test_context, &test_task, thread_id] (tbb::task::suspend_point tag) { in __anon509d20bd0b02() argument
403 test_task.emplace_back(tag, wait); in __anon509d20bd0b02()
492 … tbb::task::suspend([&resume_flag, &test_suspend_tag, thread_id] (tbb::task::suspend_point tag) { in __anon509d20bd0e02() argument
494 test_suspend_tag = tag; in __anon509d20bd0e02()
547 … tbb::task::suspend([&resume_flag, &test_suspend_tag, thread_id] (tbb::task::suspend_point tag) { in __anon509d20bd1102() argument
549 test_suspend_tag = tag; in __anon509d20bd1102()
H A Dtest_indexer_node.cpp186 if(v.tag() == ELEM-1) { in check_value()
323 if(ELEM - 1 == v.tag()) { in check_queue_value()
353 CHECK_MESSAGE(v.tag() == 0, ""); // won't get here unless true in check_queue_value()
H A Dtest_task_arena.cpp1265 noDefaultTag tag; in function() local
1266 R r(tag); in function()
/oneTBB/src/tbb/
H A Daddress_waiter.cpp65 std::uintptr_t tag = std::uintptr_t(address); in get_address_waiter() local
66 return address_waiter_table[((tag >> 5) ^ tag) % num_address_waiters]; in get_address_waiter()
H A Dscheduler_common.h112 isolation_type* tag = reinterpret_cast<isolation_type*>(&t.m_reserved[2]); in isolation() local
113 return *tag; in isolation()
/oneTBB/include/oneapi/tbb/detail/
H A D_task.h62 TBB_EXPORT void __TBB_EXPORTED_FUNC resume(suspend_point_type* tag);
92 inline void resume(suspend_point tag) { in resume() argument
93 r1::resume(tag); in resume()
H A D_range_common.h116 concept iterator_satisfies = requires (IteratorTag tag) {
117 requires iterator_concept_helper<Iterator>(tag);
H A D_flow_graph_types_impl.h387 TagType tag() const {return my_tag;}
/oneTBB/examples/graph/cholesky/
H A Dcholesky.cpp307 std::size_t tag; member
335 t.tag = 0; in operator ()()
366 t.tag = 0; in operator ()()
397 t.tag = 0; in operator ()()
460 return t.first.tag; in operator ()()
498 t.tag = 0; in func()
H A DREADME.md10 …puts for an invocation are matched together in the tag-matching `join_node` that precedes it. The
/oneTBB/test/conformance/
H A Dconformance_indexer_node.cpp105 if (v.tag() == 0) { in __anon3412adbc0402()
108 } else if (v.tag() == 1) { in __anon3412adbc0402()
/oneTBB/test/common/
H A Dconcurrent_lru_cache_common.h34 struct tag{}; struct
192 using cache_miss_tag = helpers::tag<tag_id>;
/oneTBB/examples/graph/logic_sim/
H A Dbasics.hpp432 ports[v.tag()] = cast_to<signal_t>(v); in operator ()()
476 ports[v.tag()] = cast_to<signal_t>(v); in operator ()()
520 ports[v.tag()] = cast_to<signal_t>(v); in operator ()()
571 ports[v.tag()] = cast_to<signal_t>(v); in operator ()()
695 ports[v.tag()] = cast_to<signal_t>(v); in operator ()()
/oneTBB/include/oneapi/tbb/
H A Dparallel_scan.h150 void operator()( const Range& r, Tag tag ) { in operator()
151 m_body( r, tag ); in operator()
523 void operator()( const Range& r, Tag tag ) { in operator()
524 m_sum_slot = tbb::detail::invoke(m_scan, r, m_sum_slot, tag); in operator()
H A Dparallel_for_each.h408 using tag = typename std::iterator_traits<It>::iterator_category;
441 std::is_base_of<std::random_access_iterator_tag, tag<It>>::value,
444 std::is_base_of<std::forward_iterator_tag, tag<It>>::value,
H A Dflow_graph.h1634 size_type tag = (*my_sequencer)(*(op->elem)); in __TBB_requires() local
1636 if (tag < this->my_head) { in __TBB_requires()
1643 size_t new_tail = (tag+1 > this->my_tail) ? tag+1 : this->my_tail; in __TBB_requires()
1650 const op_stat res = this->place_item(tag, *(op->elem)) ? SUCCEEDED : FAILED; in __TBB_requires()
/oneTBB/doc/main/tbb_userguide/
H A DPredefined_Node_Types.rst39 …essors. The policy used to combine messages is selectable as queueing, reserving or tag-matching.
47 …gged_msg. The message is of one of the types listed in the input and the tag identifies the port…
/oneTBB/examples/test_all/fibonacci/
H A Dfibonacci.cpp388 void operator()(const oneapi::tbb::blocked_range<int> &r, Tag tag) { in operator ()()
392 if (tag.is_final_scan()) in operator ()()
/oneTBB/cmake/
H A DREADME.md262 Starting from [oneTBB 2021.1](https://github.com/oneapi-src/oneTBB/releases/tag/v2021.1), GitHub* r…