Home
last modified time | relevance | path

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

/oneTBB/test/tbb/
H A Dtest_concurrent_queue.cpp86 typename Queue::const_iterator ci = q2.unsafe_begin(); in TestVectorTypes() local
88 CHECK((ci != q2.unsafe_end())); in TestVectorTypes()
89 ClassWithVectorType foo = *ci; in TestVectorTypes()
91 CHECK((*ci == bar)); in TestVectorTypes()
92 ++ci; in TestVectorTypes()
H A Dtest_tagged_msg.cpp71 Wrapper<odd_array_type> ci(ww); in TestWrapper() local
72 CHECK_MESSAGE( (!strncmp(ci.value(), ww, 14)), "odd_array_type ci not properly-constructed" ); in TestWrapper()
74 Wrapper<odd_array_type> ci2(ci); in TestWrapper()
/oneTBB/test/conformance/
H A Dconformance_combinable.cpp129 … for(typename ContainerType::const_iterator ci = new_bit.begin(); ci != new_bit.end(); ++ci) { in operator ()() local
130 my_result += *ci; in operator ()()
H A Dconformance_concurrent_hash_map.cpp745 test_table_type::const_iterator ci = const_table.begin(); in TraverseTable() local
764 test_table_type::const_iterator cic = ci++; in TraverseTable()
768 CHECK(ci==const_table.end()); in TraverseTable()
/oneTBB/
H A DREADME.md2 …m/oneapi-src/oneTBB/actions/workflows/ci.yml/badge.svg)](https://github.com/oneapi-src/oneTBB/acti…
/oneTBB/include/oneapi/tbb/
H A Denumerable_thread_specific.h1031 const_iterator ci = begin();
1032 T my_result = *ci;
1033 while(++ci != end())
1034 my_result = f_combine( my_result, *ci );
1041 for(iterator ci = begin(); ci != end(); ++ci) {
1042 f_combine( *ci );
/oneTBB/examples/parallel_for/polygon_overlay/
H A Dpolyover.cpp722 for (oneapi::tbb::flattened2d<ETS_Polygon_map_t>::const_iterator ci = psv.begin(); in SplitParallelOverlayETS() local
723 ci != psv.end(); in SplitParallelOverlayETS()
724 ++ci) { in SplitParallelOverlayETS()
725 s_result_map.push_back(*ci); in SplitParallelOverlayETS()