| /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 | 217 Table c1; 218 c1.insert(lst.begin(), lst.end()); 219 Examine<DefCtorPresent>(c1, lst); 243 Table c3(c1); 247 Table c3_alloc(c1, allocator); 266 Table c7(c1.begin(), c1.end()); 270 Table c8(c1.begin(), c1.end(), allocator); 274 Table c9(c1.begin(), c1.end(), compare, allocator); 330 Container c1, c2; 333 c1.insert(Value<Container>::make(1)); [all …]
|
| H A D | concurrent_unordered_common.h | 210 Table c1; in TypeTester() local 211 c1.insert(lst.begin(), lst.end()); in TypeTester() 213 Examine<DefCtorPresent>(c1, lst); in TypeTester() 237 Table c3(c1); in TypeTester() 241 Table c3_alloc(c1, allocator); in TypeTester() 260 Table c5(c1.begin(), c1.end()); in TypeTester() 273 c6 = c1; in TypeTester() 326 Container c1, c2; in test_comparisons_basic() local 329 c1.insert(Value<Container>::make(1)); in test_comparisons_basic() 338 c1.clear(); 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 | 1204 container_type c1(allocator); 1212 c1.clear(); 1215 c1.insert(value1); 1218 c1.clear(); 1221 c1.insert(init_list); 1224 c1 = c2; 1225 c2 = std::move(c1); 1535 Container c1{}; 1538 Container c1_copy = c1; 1541 c1.swap(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 | 219 c1.grow_by(100); in test_scoped_allocator() 224 c1.clear(); in test_scoped_allocator() 229 c1.clear(); in test_scoped_allocator() 236 c1.clear(); in test_scoped_allocator() 238 c1.reserve(100); in test_scoped_allocator() 239 c1.resize(110); in test_scoped_allocator() 240 c1.resize(100); in test_scoped_allocator() 246 c1.clear(); in test_scoped_allocator() 251 c1 = c2; in test_scoped_allocator() 266 REQUIRE( (!(c1 == c2) && c1 != c2) ); in CompareVectors() [all …]
|
| H A D | test_concurrent_priority_queue.cpp | 199 container_type c1(allocator); in test_scoped_allocator() local 204 c1.push(data1); 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 | 263 ch_map c1; in TypeTester() local 264 c1.insert( lst.begin(), lst.end() ); in TypeTester() 265 Examine<default_construction_present>( c1, lst ); in TypeTester() 285 ch_map c5(c1); in TypeTester() 305 ch_map c10_1( c1.begin(), c1.end() ), c10_2(c1.cbegin(), c1.cend()); in TypeTester() 318 ch_map_debug_hash c12(c1.begin(), c1.end(), compare); in TypeTester() 321 ch_map_debug_hash c13(c1.begin(), c1.end(), compare, typename ch_map::allocator_type()); in TypeTester()
|
| 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 | 352 OtherType c1; 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_join_node.cpp | 127 oneapi::tbb::flow::continue_node<input_msg> c1( g, variable 147 oneapi::tbb::flow::make_edge(c1, oneapi::tbb::flow::input_port<2>(testing_node)); 162 c1.try_put(oneapi::tbb::flow::continue_msg()); 167 c1.try_put(oneapi::tbb::flow::continue_msg()); 171 c1.try_put(oneapi::tbb::flow::continue_msg()); 175 c1.try_put(oneapi::tbb::flow::continue_msg()); 184 c1.try_put(oneapi::tbb::flow::continue_msg());
|
| H A D | conformance_concurrent_priority_queue.cpp | 621 CPQType c1, c2; in TestComparisonsBasic() local 622 testEqualityComparisons</*ExpectEqual = */true>(c1, c2); in TestComparisonsBasic() 624 c1.emplace(1); in TestComparisonsBasic() 625 testEqualityComparisons</*ExpectEqual = */false>(c1, c2); in TestComparisonsBasic() 628 testEqualityComparisons</*ExpectEqual = */true>(c1, c2); in TestComparisonsBasic() 633 TwoWayComparableCPQType c1, c2; in TestTwoWayComparableCPQ() local 634 c1.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_indexer_node.cpp | 97 oneapi::tbb::flow::continue_node<input_msg> c1( g, variable 120 oneapi::tbb::flow::make_edge(c1, oneapi::tbb::flow::input_port<2>(testing_node)); 125 c1.try_put(oneapi::tbb::flow::continue_msg());
|
| H A D | conformance_continue_node.cpp | 37 continue_node c1(g, body); in test_deduction_guides_common() local 38 static_assert(std::is_same_v<decltype(c1), continue_node<ExpectedType>>); in test_deduction_guides_common() 89 continue_node c17(c1); in test_deduction_guides_common()
|
| 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() 1157 c1.emplace(1, 1); in test_comparisons_basic() 1158 testEqualityComparisons</*ExpectEqual = */false>(c1, c2); 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 1167 c1.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_global_control.cpp | 88 …oneapi::tbb::global_control c1(oneapi::tbb::global_control::max_allowed_parallelism, max_paralleli… in TestWorkersConstraints() local 233 oneapi::tbb::global_control c1(oneapi::tbb::global_control::terminate_on_exception, 1); variable
|
| /oneTBB/examples/parallel_for/tachyon/src/ |
| H A D | parse.cpp | 372 static errcode GetColor(FILE *dfile, color *c1) { in GetColor() argument 378 c1->r = r; in GetColor() 379 c1->g = g; in GetColor() 380 c1->b = b; in GetColor()
|