Home
last modified time | relevance | path

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

/oneTBB/test/common/
H A Dtest_invoke.h38 SmartRange(const Value& first, const Value& last, std::vector<std::size_t>& cv) in SmartRange() argument
39 : base_range(first, last), change_vector(&cv) {} in SmartRange()
/oneTBB/test/conformance/
H A Dconformance_parallel_for_each.cpp98 …EachInvokeItem(std::size_t rv, std::vector<std::size_t>& cv) : real_value(rv), change_vector(cv) {} in ForEachInvokeItem() argument
H A Dconformance_concurrent_vector.cpp232 static void CheckVector( const vector_t& cv, std::size_t expected_size, std::size_t /*old_size*/ ) { in CheckVector() argument
233 REQUIRE( cv.capacity()>=expected_size ); in CheckVector()
234 REQUIRE( cv.size()==expected_size ); in CheckVector()
235 REQUIRE( cv.empty()==(expected_size==0) ); in CheckVector()
237 CHECK((cv[j].bar()==~j)); in CheckVector()
269 const vector_t& cv = v; in TestResizeAndCopy() local
271 vector_t copy_of_v(cv); in TestResizeAndCopy()
272 CheckVector(cv,new_size,old_size); in TestResizeAndCopy()
H A Dconformance_parallel_for.cpp252 SmartIndex(std::size_t ri, std::vector<std::size_t>& cv) in SmartIndex() argument
253 : real_index(ri), change_vector(&cv) {} in SmartIndex()
/oneTBB/test/tbb/
H A Dtest_hw_concurrency.cpp62 tbb::concurrent_vector<std::size_t> cv; variable
H A Dtest_concurrent_hash_map.cpp206 const check_value<default_construction_present, Table> cv(c); in Examine() local
207 std::for_each( lst.begin(), lst.end(), cv ); in Examine()