Home
last modified time | relevance | path

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

/oneTBB/include/oneapi/tbb/
H A Dconcurrent_set.h80 concurrent_set() = default;
81 concurrent_set( const concurrent_set& ) = default;
82concurrent_set( const concurrent_set& other, const allocator_type& alloc ) : base_type(other, allo… in concurrent_set() function
83 concurrent_set( concurrent_set&& ) = default;
84concurrent_set( concurrent_set&& other, const allocator_type& alloc ) : base_type(std::move(other)… in concurrent_set() function
86 concurrent_set& operator=( const concurrent_set& ) = default;
87 concurrent_set& operator=( concurrent_set&& ) = default;
132 -> concurrent_set<Key, Comp, Alloc>;
137 concurrent_set( It, It, Alloc )
138 -> concurrent_set<iterator_value_t<It>,
[all …]
/oneTBB/test/tbb/
H A Dtest_concurrent_set.cpp34 using set_type = tbb::concurrent_set<int, std::less<int>, MyAllocator<int>>;
36 using checked_set_type = tbb::concurrent_set<CheckType<int>, std::less<CheckType<int>>, MyAllocator…
38 using greater_set_type = tbb::concurrent_set<int, std::greater<int>, MyAllocator<int>>;
40 using checked_state_set_type = tbb::concurrent_set<FooWithAssign, std::less<FooWithAssign>, MyAlloc…
45 using container_type = tbb::concurrent_set<T, std::less<T>, Allocator>;
66 TypeTester<DefCtorPresent, tbb::concurrent_set<ValueType>>(lst); in check()
75 test_emplace_insert<tbb::concurrent_set<test::unique_ptr<int>>, std::false_type> in test_specific_types()
213 …using not_always_equal_alloc_set_type = tbb::concurrent_set<int, std::less<int>, NotAlwaysEqualAll…
226 using exception_set_type = tbb::concurrent_set<ThrowOnCopy>;
240 static_assert(test_concepts::container_range<typename tbb::concurrent_set<int>::range_type>);
[all …]
H A Dtest_hw_concurrency.cpp73 tbb::concurrent_set<std::size_t> cset;
H A Dtest_tbb_header.cpp190 TestTypeDefinitionPresence( concurrent_set<int> ); in DefinitionPresence()
H A Dtest_task_arena.cpp1588 tbb::concurrent_set<simple_observer> observers;
1627 tbb::concurrent_set<arena_handler> arenas_pool; in StressTestMixFunctionality()
/oneTBB/test/conformance/
H A Dconformance_concurrent_set.cpp36 using set_type = oneapi::tbb::concurrent_set<int, std::less<int>, Allocator<int>>;
132 using container_type = oneapi::tbb::concurrent_set<T, std::less<T>, Allocator>;
153 test_member_types<oneapi::tbb::concurrent_set>();
189 test_heterogeneous_functions<oneapi::tbb::concurrent_set>();
196 test_deduction_guides<oneapi::tbb::concurrent_set>();
203 test_set_comparisons<oneapi::tbb::concurrent_set>();