Home
last modified time | relevance | path

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

/oneTBB/test/conformance/
H A Dconformance_composite_node.cpp99 oneapi::tbb::flow::broadcast_node<int> bc(g);
110 …auto input_tuple = std::tie(ct, s, m_fxn, fxn, bc, oneapi::tbb::flow::input_port<0>(j), lim, q, on…
112 …auto output_tuple = std::tie(ct,j, ind, fxn, src, bc, oneapi::tbb::flow::output_port<0>(s), lim, o…
119 a_node.add_visible_nodes(src, fxn, m_fxn, bc, lim, ind, s, ct, j, q, bf, pq, wo, ovw, seq);
120 a_node.add_nodes(src, fxn, m_fxn, bc, lim, ind, s, ct, j, q, bf, pq, wo, ovw, seq);
134 b_node.add_visible_nodes(src, fxn, m_fxn, bc, lim, ind, s, ct, j, q, bf, pq, wo, ovw, seq);
135 b_node.add_nodes(src, fxn, m_fxn, bc, lim, ind, s, ct, j, q, bf, pq, wo, ovw, seq);
148 c_node.add_visible_nodes(src, fxn, m_fxn, bc, lim, ind, s, ct, j, q, bf, pq, wo, ovw, seq);
150 c_node.add_nodes(src, fxn, m_fxn, bc, lim, ind, s, ct, j, q, bf, pq, wo, ovw, seq);
H A Dconformance_input_node.cpp54 broadcast_node<int> bc(g); in test_deduction_guides() local
57 input_node s5(precedes(bc), lambda); in test_deduction_guides()
60 input_node s6(precedes(bc), non_const_lambda); in test_deduction_guides()
63 input_node s7(precedes(bc), input_body_f); in test_deduction_guides()
H A Dconformance_graph.cpp199 oneapi::tbb::flow::broadcast_node<int> bc(g);
214 oneapi::tbb::flow::make_edge(bc, successor);
232 bc.try_put(1);
/oneTBB/test/tbb/
H A Dtest_tagged_msg.cpp228 catch(std::runtime_error &bc) { in RunTests() local
229 …CHECK_MESSAGE( (0 == strcmp(bc.what(), "Illegal tagged_msg cast")), "Incorrect std:runtime_error"); in RunTests()
239 catch(std::runtime_error &bc) { in RunTests() local
240 …CHECK_MESSAGE( (0 == strcmp(bc.what(), "Illegal tagged_msg cast")), "Incorrect std:runtime_error"); in RunTests()
250 catch(std::runtime_error &bc) { in RunTests() local
251 …CHECK_MESSAGE( (0 == strcmp(bc.what(), "Illegal tagged_msg cast")), "Incorrect std:runtime_error"); in RunTests()
/oneTBB/src/tbb/
H A Dobserver_proxy.cpp201 intptr_t bc = --tso->my_busy_count; in do_notify_entry_observers() local
202 __TBB_ASSERT_EX(bc >= 0, "my_busy_count underflowed"); in do_notify_entry_observers()
255 intptr_t bc = --tso->my_busy_count; in do_notify_exit_observers() local
256 __TBB_ASSERT_EX(bc >= 0, "my_busy_count underflowed"); in do_notify_exit_observers()
/oneTBB/examples/graph/fgbzip2/
H A Dcompress.cpp277 Int32 t, i, j, k, gs, ge, totc, bt, bc; in sendMTFValues() local
489 bc = 999999999; in sendMTFValues()
492 if (cost[i] < bc) { in sendMTFValues()
493 bc = cost[i]; in sendMTFValues()
496 totc += bc; in sendMTFValues()