Lines Matching refs:r
66 [&](const tbb::blocked_range<std::size_t>& r) { in test() argument
68 trace[thread_id].emplace_back(r.begin(), r.end()); in test()
70 const bool is_uniform_split = r.size() == per_thread_iters; in test()
160 …tbb::parallel_for(Range(0, int(100 * utils::get_platform_max_threads()), 1), [&] (const Range& r) { in test_custom_range() argument
162 results[i].push_back(r.size()); in test_custom_range()
181 custom_range(int l, int r, int g) : base_type(l, r, g) {} in custom_range() argument
182 custom_range(const custom_range& r) : base_type(r) {} in custom_range() argument
184 custom_range(custom_range& r, tbb::split) : base_type(r, tbb::split()) {} in custom_range() argument
192 custom_range_with_psplit(int l, int r, int g) : base_type(l, r, g) {} in custom_range_with_psplit() argument
193 custom_range_with_psplit(const custom_range_with_psplit& r) : base_type(r) {} in custom_range_with_psplit() argument
195 … custom_range_with_psplit(custom_range_with_psplit& r, tbb::split) : base_type(r, tbb::split()) {} in custom_range_with_psplit() argument
196 …custom_range_with_psplit(custom_range_with_psplit& r, tbb::proportional_split& p) : base_type(r, p… in custom_range_with_psplit() argument