Home
last modified time | relevance | path

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

/oneTBB/test/common/
H A Drange_based_for_support.h27 inline InitValueType range_based_for_accumulate( const Container& c, BinaryAccumulator accumulator,… in range_based_for_accumulate() function
37 inline InitValueType range_based_for_accumulate( const Container& c, BinaryAccumulator accumulator,… in range_based_for_accumulate() function
38 return range_based_for_accumulate<typename Container::value_type>(c, accumulator, init); in range_based_for_accumulate()
H A Dconcurrent_associative_common.h851 auto range_based_for_result = range_based_for_accumulate(cont, UnifiedSummer{}, 0);
/oneTBB/test/conformance/
H A Dconformance_parallel_for_each.cpp75 REQUIRE_MESSAGE(range_based_for_accumulate(v, std::plus<size_t>(), init_sum) == init_sum, in WorkProducingTest()
82 REQUIRE_MESSAGE(range_based_for_accumulate(v, std::plus<size_t>(), init_sum) == v.size(), in WorkProducingTest()
89 REQUIRE_MESSAGE(range_based_for_accumulate(v, std::plus<size_t>(), init_sum) == init_sum, in WorkProducingTest()
/oneTBB/test/tbb/
H A Dtest_blocked_range.cpp50 … CHECK_MESSAGE(range_based_for_accumulate<std::size_t>(r, std::plus<std::size_t>(), std::size_t(0))
H A Dtest_concurrent_vector.cpp64 …REQUIRE_MESSAGE( range_based_for_accumulate(a_c_vector, std::plus<int>(), 0) == gauss_summ_of_int_… in TestRangeBasedFor()
H A Dtest_concurrent_hash_map.cpp59 …REQUIRE_MESSAGE((range_based_for_accumulate(a_ch_map, pair_second_summer(), 0) == gauss_summ_of_in… in TestRangeBasedFor()