Lines Matching refs:std
57 tbb::enumerable_thread_specific<std::size_t> ets;
58 using vector_ets_type = tbb::enumerable_thread_specific<std::vector<std::size_t>>;
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;
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});