| /oneTBB/examples/graph/fgbzip2/ |
| H A D | blocksort.cpp | 425 UChar c1, c2; in mainGtU() local 432 if (c1 != c2) in mainGtU() 439 if (c1 != c2) in mainGtU() 446 if (c1 != c2) in mainGtU() 453 if (c1 != c2) in mainGtU() 460 if (c1 != c2) in mainGtU() 467 if (c1 != c2) in mainGtU() 474 if (c1 != c2) in mainGtU() 481 if (c1 != c2) in mainGtU() 488 if (c1 != c2) in mainGtU() [all …]
|
| /oneTBB/test/common/ |
| H A D | concurrent_ordered_common.h | 228 Table c2(init); 229 c2.insert(it, lst.end()); 230 Examine<DefCtorPresent>(c2, lst); 330 Container c1, c2; 336 c2.insert(Value<Container>::make(1)); 339 c2.insert(Value<Container>::make(2)); 343 c2.clear(); 350 TwoWayComparableContainerType c1, c2; 352 c2.insert(Value<TwoWayComparableContainerType>::make(1)); 367 ThreeWayComparableContainerType c1, c2; [all …]
|
| H A D | concurrent_unordered_common.h | 220 Table c2({*it++, *it++, *it++}); in TypeTester() 221 c2.insert(it, lst.end()); in TypeTester() 222 Examine<DefCtorPresent>(c2, lst); in TypeTester() 326 Container c1, c2; in test_comparisons_basic() local 327 testEqualityComparisons</*ExpectEqual = */true>(c1, c2); in test_comparisons_basic() 332 c2.insert(Value<Container>::make(1)); in test_comparisons_basic() 333 testEqualityComparisons</*ExpectEqual = */true>(c1, c2); in test_comparisons_basic() 335 c2.insert(Value<Container>::make(2)); in test_comparisons_basic() 339 c2.clear(); in test_comparisons_basic() 340 testEqualityComparisons</*ExpectEqual = */true>(c1, c2); in test_comparisons_basic() [all …]
|
| H A D | containers_common.h | 38 ContainerType c1(alloc), c2(c1); in test_allocator_traits() 41 c1 = c2; in test_allocator_traits() 44 c2 = std::move(c1); in test_allocator_traits() 47 c1.swap(c2); in test_allocator_traits() 53 swap(c1, c2); in test_allocator_traits()
|
| H A D | concurrent_associative_common.h | 1166 Table c2; 1172 c2.swap(c); 1178 c2.clear(); 1179 REQUIRE(c2.size() == 0); 1213 c2.clear(); 1219 c2.clear(); 1222 c2.insert(value1); 1224 c1 = c2; 1225 c2 = std::move(c1); 1539 Container c2_copy = c2; [all …]
|
| H A D | common_arena_constraints.h | 498 …bool operator()(const tbb::task_arena::constraints& c1, const tbb::task_arena::constraints& c2) co… in operator() 499 return (c1.numa_id == c2.numa_id && in operator() 500 c1.core_type == c2.core_type && in operator() 501 c1.max_threads_per_core == c2.max_threads_per_core); in operator()
|
| /oneTBB/test/tbb/ |
| H A D | test_concurrent_vector.cpp | 251 c1 = c2; in test_scoped_allocator() 252 c2 = std::move(c1); in test_scoped_allocator() 266 REQUIRE( (!(c1 == c2) && c1 != c2) ); in CompareVectors() 267 REQUIRE( (c1 <= c2 && c1 < c2 && c2 >= c1 && c2 > c1) ); in CompareVectors() 288 vector_t c2; in Examine() local 289 c2.reserve( 5 ); in Examine() 292 c.grow_by( c2.begin(), c2.end() ); in Examine() 298 c.swap( c2 ); in Examine() 301 c.swap( c2 ); in Examine() 302 c2.clear(); in Examine() [all …]
|
| H A D | test_concurrent_priority_queue.cpp | 200 container_type c2(allocator); in test_scoped_allocator() local 205 c2.push(std::move(data2)); in test_scoped_allocator() 210 c1 = c2; in test_scoped_allocator() 211 c2 = std::move(c1); in test_scoped_allocator()
|
| H A D | test_concurrent_hash_map.cpp | 228 Table c2; in Examine() local 231 c2.insert( lst.begin(), begin5 ); in Examine() 234 c2.swap( c ); in Examine() 235 CHECK(CompareTables<value_type>::IsEqual( c2, const_c )); in Examine() 239 swap( c, c2 ); in Examine() 241 CHECK(c2.size() == 5); in Examine() 243 c2.clear(); in Examine() 244 CHECK(CompareTables<value_type>::IsEqual( c2, Table() )); in Examine() 270 ch_map c2( il ); in TypeTester() local 271 c2.insert( it, lst.end() ); in TypeTester() [all …]
|
| H A D | test_arena_constraints.cpp | 142 auto constraints_comparison = [](const constraints& c1, const constraints& c2) { in __anon2861f8e80402() argument 143 REQUIRE_MESSAGE(constraints_equal{}(c1, c2), in __anon2861f8e80402()
|
| H A D | test_enumerable_thread_specific.cpp | 354 OtherType c2; in allocate_ets_element_on_stack() local 360 tbb::detail::suppress_unused_warning(c1,c2); in allocate_ets_element_on_stack()
|
| /oneTBB/test/conformance/ |
| H A D | conformance_concurrent_priority_queue.cpp | 621 CPQType c1, c2; in TestComparisonsBasic() local 622 testEqualityComparisons</*ExpectEqual = */true>(c1, c2); in TestComparisonsBasic() 625 testEqualityComparisons</*ExpectEqual = */false>(c1, c2); in TestComparisonsBasic() 627 c2.emplace(1); in TestComparisonsBasic() 628 testEqualityComparisons</*ExpectEqual = */true>(c1, c2); in TestComparisonsBasic() 633 TwoWayComparableCPQType c1, c2; in TestTwoWayComparableCPQ() local 635 c2.emplace(1); in TestTwoWayComparableCPQ() 637 REQUIRE_MESSAGE(c1 == c2, "Incorrect operator == result"); in TestTwoWayComparableCPQ() 639 REQUIRE_MESSAGE(!(c1 != c2), "Incorrect operator != result"); in TestTwoWayComparableCPQ()
|
| H A D | conformance_concurrent_hash_map.cpp | 1154 CHMapType c1, c2; in test_comparisons_basic() local 1155 testEqualityComparisons</*ExpectEqual = */true>(c1, c2); in test_comparisons_basic() 1158 testEqualityComparisons</*ExpectEqual = */false>(c1, c2); in test_comparisons_basic() 1160 c2.emplace(1, 1); in test_comparisons_basic() 1161 testEqualityComparisons</*ExpectEqual = */true>(c1, c2); in test_comparisons_basic() 1166 TwoWayComparableContainerType c1, c2; in test_two_way_comparable_chmap() local 1168 c2.emplace(1, 1); in test_two_way_comparable_chmap() 1170 REQUIRE_MESSAGE(c1 == c2, "Incorrect operator == result"); in test_two_way_comparable_chmap() 1172 REQUIRE_MESSAGE(!(c1 != c2), "Incorrect operator != result"); in test_two_way_comparable_chmap()
|
| H A D | conformance_continue_node.cpp | 40 continue_node c2(g, body, lightweight()); in test_deduction_guides_common() local 41 static_assert(std::is_same_v<decltype(c2), continue_node<ExpectedType, lightweight>>); in test_deduction_guides_common()
|
| H A D | conformance_global_control.cpp | 236 oneapi::tbb::global_control c2(oneapi::tbb::global_control::terminate_on_exception, 0); variable
|