Lines Matching refs:tbb
57 tbb::enumerable_thread_specific<std::size_t> ets;
58 using vector_ets_type = tbb::enumerable_thread_specific<std::vector<std::size_t>>;
60 tbb::flattened2d<vector_ets_type> f2d(vets);
61 tbb::combinable<std::size_t> comb;
62 tbb::concurrent_vector<std::size_t> cv;
63 tbb::concurrent_queue<std::size_t> cq;
64 tbb::concurrent_bounded_queue<std::size_t> cbq;
65 tbb::concurrent_priority_queue<std::size_t> test_cpq;
66 tbb::concurrent_hash_map<std::size_t, std::size_t> chmap;
67 tbb::concurrent_unordered_map<std::size_t, std::size_t> cumap;
68 tbb::concurrent_unordered_multimap<std::size_t, std::size_t> cummap;
69 tbb::concurrent_unordered_set<std::size_t> cuset;
70 tbb::concurrent_unordered_multiset<std::size_t> cumset;
71 tbb::concurrent_map<std::size_t, std::size_t> cmap;
72 tbb::concurrent_multimap<std::size_t, std::size_t> cmmap;
73 tbb::concurrent_set<std::size_t> cset;
74 tbb::concurrent_multiset<std::size_t> cmset;
75 tbb::cache_aligned_allocator<std::size_t> caa;
76 tbb::scalable_allocator<std::size_t> sa;
77 tbb::tbb_allocator<std::size_t> ta;
78 tbb::null_mutex nm;
79 tbb::null_rw_mutex nrwm;
80 tbb::queuing_mutex qm;
81 tbb::queuing_rw_mutex qrwm;
82 tbb::spin_mutex sm;
83 tbb::spin_rw_mutex srwm;
84 tbb::speculative_spin_mutex ssm;
85 tbb::speculative_spin_rw_mutex ssrwm;
86 tbb::tick_count test_tc;
87 tbb::blocked_range<std::size_t> br(0, 1);
88 tbb::blocked_range2d<std::size_t> br2d(0, 1, 0, 1);
89 tbb::blocked_range3d<std::size_t> br3d(0, 1, 0, 1, 0, 1);
90 tbb::blocked_rangeNd<std::size_t, 2> brNd({0, 1}, {0, 1});
99 REQUIRE(tbb::this_task_arena::max_concurrency() == availableProcs);