Home
last modified time | relevance | path

Searched refs:cbegin (Results 1 – 14 of 14) sorted by relevance

/oneTBB/include/oneapi/tbb/detail/
H A D_flow_graph_impl.h320 const_iterator cbegin() const;
H A D_concurrent_skip_list.h603 const_iterator cbegin() const { in cbegin() function
H A D_concurrent_unordered_base.h399 …const_iterator cbegin() const noexcept { return const_iterator(first_value_node(const_cast<node_pt… in cbegin() function
/oneTBB/test/tbb/
H A Dtest_flow_graph.cpp357 for(auto it = g.cbegin(); it != g.cend(); it++)
H A Dtest_concurrent_vector.cpp296 REQUIRE( utils::IsEqual()(*c.cbegin(), *(c.crend()-1)) ); in Examine()
H A Dtest_concurrent_hash_map.cpp305 ch_map c10_1( c1.begin(), c1.end() ), c10_2(c1.cbegin(), c1.cend()); in TypeTester()
H A Dtest_flow_graph_whitebox.cpp917 CHECK_MESSAGE((g.cbegin() == g.cend()), "Starting graph is empty");
/oneTBB/test/conformance/
H A Dconformance_concurrent_vector.cpp112 REQUIRE( cp == v.cbegin() ); in TestSequentialFor()
166 REQUIRE( ((v.cbegin()+i)[j].bar()==i+j) ); in TestSequentialFor()
169 REQUIRE(((i+v.cbegin())[j].bar()==i+j) ); in TestSequentialFor()
179 TestIteratorAssignment<typename V::const_iterator>( v.cbegin() ); in TestSequentialFor()
H A Dconformance_parallel_pipeline.cpp184 RootSequence(input.cbegin(), input.cend(), output.begin());
/oneTBB/test/common/
H A Dconcurrent_associative_common.h457 …REQUIRE_MESSAGE(cont.cbegin() == cont.cend(), "Concurrent container iterators are invalid after co…
572 typename T::iterator it5 = cont.unsafe_erase(cont.cbegin());
1510 iterator res_generic_insert_hint = cont1.insert(cont1.cbegin(), generic_pair_type(2, i));
1511 …iterator res_value_insert_hint = cont2.insert(cont2.cbegin(), value_type(2, int_constructible_obje…
H A Dnode_handling_support.h268 nh = table_for_extract.unsafe_extract(table_for_extract.cbegin()); in test_extract()
/oneTBB/include/oneapi/tbb/
H A Dconcurrent_vector.h464 const_iterator cbegin() const { return const_iterator(*this, 0); } in cbegin() function
476 const_reverse_iterator crend() const { return const_reverse_iterator(cbegin()); } in crend()
H A Dconcurrent_hash_map.h1048 …const_iterator cbegin() const { return const_iterator( *this, 0, this->my_embedded_segment, this->… in __TBB_requires()
H A Dflow_graph.h519 inline graph::const_iterator graph::cbegin() const { return const_iterator(this, true); } in cbegin() function