Searched refs:concurrent_map (Results 1 – 5 of 5) sorted by relevance
| /oneTBB/include/oneapi/tbb/ |
| H A D | concurrent_map.h | 97 concurrent_map() = default; 98 concurrent_map( const concurrent_map& ) = default; 99 …concurrent_map( const concurrent_map& other, const allocator_type& alloc ) : base_type(other, allo… in concurrent_map() function 100 concurrent_map( concurrent_map&& ) = default; 101 …concurrent_map( concurrent_map&& other, const allocator_type& alloc ) : base_type(std::move(other)… in concurrent_map() function 103 concurrent_map& operator=( const concurrent_map& ) = default; 104 concurrent_map& operator=( concurrent_map&& ) = default; 122 return const_cast<concurrent_map*>(this)->at(key); in at() 188 concurrent_map( It, It, Comp = Comp(), Alloc = Alloc() ) 202 concurrent_map( It, It, Alloc ) [all …]
|
| /oneTBB/test/tbb/ |
| H A D | test_concurrent_map.cpp | 33 using map_type = tbb::concurrent_map<int, int, std::less<int>, MyAllocator<int, int>>; 35 using checked_map_type = tbb::concurrent_map<int, CheckType<int>, std::less<int>, MyAllocator<int, … 37 using greater_map_type = tbb::concurrent_map<int, int, std::greater<int>, MyAllocator<int, int>>; 39 using checked_state_map_type = tbb::concurrent_map<intptr_t, FooWithAssign, std::less<intptr_t>, 60 using container_type = tbb::concurrent_map<T, T, std::less<T>, Allocator>; 84 TypeTester<DefCtorPresent, tbb::concurrent_map<key_type, mapped_type>>(lst); in check() 93 test_emplace_insert<tbb::concurrent_map<int*, test::unique_ptr<int>>,std::false_type> in test_specific_types() 223 using not_always_equal_alloc_map_type = tbb::concurrent_map<int, int, std::less<int>, 238 using exception_map_type = tbb::concurrent_map<ThrowOnCopy, ThrowOnCopy>; 252 … static_assert(test_concepts::container_range<typename tbb::concurrent_map<int, int>::range_type>); [all …]
|
| H A D | test_hw_concurrency.cpp | 71 tbb::concurrent_map<std::size_t, std::size_t> cmap;
|
| H A D | test_tbb_header.cpp | 188 TestTypeDefinitionPresence2( concurrent_map<int, int> ); in DefinitionPresence()
|
| /oneTBB/test/conformance/ |
| H A D | conformance_concurrent_map.cpp | 40 using map_type = oneapi::tbb::concurrent_map<int, int, std::less<int>, Allocator<int, int>>; 151 using container_type = oneapi::tbb::concurrent_map<T, T, std::less<T>, Allocator>; 172 test_member_types<oneapi::tbb::concurrent_map>(); 214 test_heterogeneous_functions<oneapi::tbb::concurrent_map>(); 220 test_insert_by_generic_pair<oneapi::tbb::concurrent_map>(); 227 test_deduction_guides<oneapi::tbb::concurrent_map>(); 234 test_map_comparisons<oneapi::tbb::concurrent_map>();
|