Home
last modified time | relevance | path

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

/oneTBB/test/conformance/
H A Dconformance_sequencer_node.cpp174 …node<std::size_t, test_invoke::SmartID<std::size_t>> starter(g, unlimited, [](std::size_t x) { ret… in __anona3025c380502()
175 …sequencer_node<test_invoke::SmartID<std::size_t>> seq1(g, &test_invoke::SmartID<std::size_t>::get_…
176 …sequencer_node<test_invoke::SmartID<std::size_t>> seq2(g, &test_invoke::SmartID<std::size_t>::id);…
180 …function_node<test_invoke::SmartID<std::size_t>, std::size_t> check(g, serial, [&](const test_invo… in __anona3025c380602()
H A Dconformance_join_node.cpp275 auto generator = [](std::size_t n) { return test_invoke::SmartID<std::size_t>(n); }; in test_invoke_basic()
278 function_node<std::size_t, test_invoke::SmartID<std::size_t>> f1(g, unlimited, generator); in test_invoke_basic()
279 function_node<std::size_t, test_invoke::SmartID<std::size_t>> f2(g, unlimited, generator); in test_invoke_basic()
281 …using tuple_type = std::tuple<test_invoke::SmartID<std::size_t>, test_invoke::SmartID<std::size_t>… in test_invoke_basic()
314 …st_invoke_basic</*K = */std::size_t>(&test_invoke::SmartID<std::size_t>::get_id, &test_invoke::Sma…
315 …_basic</*K = */const std::size_t&>(&test_invoke::SmartID<std::size_t>::get_id_ref, &test_invoke::S…
H A Dconformance_async_node.cpp147 using start_node_type = function_node<std::size_t, test_invoke::SmartID<std::size_t>>;
148 using async_node_type = async_node<test_invoke::SmartID<std::size_t>, std::size_t>;
150 …auto async_body = &test_invoke::SmartID<std::size_t>::template send_id_to_gateway<typename async_n…
153 …start_node_type starter(g, serial, [](std::size_t i) -> test_invoke::SmartID<std::size_t> { return… in __anon83a565ab0302()
H A Dconformance_multifunction_node.cpp146 using output_type1 = test_invoke::SmartID<std::size_t>;
147 using input_type = test_invoke::SmartID<output_type1>;
H A Dconformance_parallel_pipeline.cpp407 using output_filter_type = test_invoke::SmartID<std::size_t>; in test_pipeline_invoke_basic()
408 using middle_filter_type = test_invoke::SmartID<output_filter_type>; in test_pipeline_invoke_basic()
433 using output_filter_type = test_invoke::SmartID<std::size_t>;
434 using middle_filter_type = test_invoke::SmartID<output_filter_type>;
H A Dconformance_function_node.cpp107 using output_type = test_invoke::SmartID<std::size_t>; in test_fn_invoke()
108 using input_type = test_invoke::SmartID<output_type>; in test_fn_invoke()
/oneTBB/test/common/
H A Dtest_invoke.h74 class SmartID {
76 SmartID() : id(999), operate_signal_point(nullptr) {} in SmartID() function
77 SmartID(std::size_t* sp) : id(999), operate_signal_point(sp) {} in SmartID() function
79 SmartID(const IDType& n) : id(n), operate_signal_point(nullptr) {} in SmartID() function
80 SmartID(const IDType& n, std::size_t* sp) : id(n), operate_signal_point(sp) {} in SmartID() function