Lines Matching refs:N
76 void call_once_in_for_loop(std::size_t N, Fn&& body, Args&&... args) { in call_once_in_for_loop() argument
78 for (std::size_t i = 0; i < N; ++i) { in call_once_in_for_loop()
84 void call_once_in_parallel_for(std::size_t N, Fn&& body, Args&&... args) { in call_once_in_parallel_for() argument
91 … tbb::parallel_for(tbb::blocked_range<size_t>(0, N), [&](const tbb::blocked_range<size_t>& range) { in call_once_in_parallel_for()
103 void call_once_threads(std::size_t N, Fn&& body, Args&&... args) { in call_once_threads() argument
112 for (std::size_t i = 0; i < N; ++i) in call_once_threads()
213 constexpr std::size_t N = 32; variable
218 constexpr std::size_t N = tbb::detail::d0::max_nfs_size * 2;
221 constexpr std::size_t N = tbb::detail::d0::max_nfs_size + 64;
223 constexpr std::size_t N = tbb::detail::d0::max_nfs_size * 4;
228 call_once_threads(N, f);
235 utils::SpinBarrier barrier{N};
237 utils::NativeParallelFor(N, [&](std::size_t) { in __anon8532fc100602()
287 constexpr std::size_t N = 32; variable
292 constexpr std::size_t N = tbb::detail::d0::max_nfs_size * 2;
294 constexpr std::size_t N = tbb::detail::d0::max_nfs_size * 4;
311 utils::NativeParallelFor(N, [&](std::size_t) { in __anon8532fc100b02()
406 constexpr int N = 93; variable
409 auto collaborative = collaborative_recursive_fib(N);