Searched refs:num_threads (Results 26 - 50 of 135) sorted by relevance

123456

/external/clang/test/OpenMP/
H A Dparallel_ast_print.cpp38 #pragma omp parallel default(none), private(argc,b) firstprivate(argv) shared (d) if (argc > 0) num_threads(C) copyin(S<T>::TS) proc_bind(master) reduction(+:c) reduction(max:e)
40 #pragma omp parallel if (C) num_threads(s) proc_bind(close) reduction(^:e, f) reduction(&& : g)
51 // CHECK-NEXT: #pragma omp parallel default(none) private(argc,b) firstprivate(argv) shared(d) if(argc > 0) num_threads(5) copyin(S<int>::TS) proc_bind(master) reduction(+: c) reduction(max: e)
53 // CHECK-NEXT: #pragma omp parallel if(5) num_threads(s) proc_bind(close) reduction(^: e,f) reduction(&&: g)
61 // CHECK-NEXT: #pragma omp parallel default(none) private(argc,b) firstprivate(argv) shared(d) if(argc > 0) num_threads(1) copyin(S<long>::TS) proc_bind(master) reduction(+: c) reduction(max: e)
63 // CHECK-NEXT: #pragma omp parallel if(1) num_threads(s) proc_bind(close) reduction(^: e,f) reduction(&&: g)
71 // CHECK-NEXT: #pragma omp parallel default(none) private(argc,b) firstprivate(argv) shared(d) if(argc > 0) num_threads(C) copyin(S<T>::TS) proc_bind(master) reduction(+: c) reduction(max: e)
73 // CHECK-NEXT: #pragma omp parallel if(C) num_threads(s) proc_bind(close) reduction(^: e,f) reduction(&&: g)
89 #pragma omp parallel default(none), private(argc,b) firstprivate(argv) if (argc > 0) num_threads(ee) copyin(a) proc_bind(spread) reduction(| : c, d) reduction(* : e)
90 // CHECK-NEXT: #pragma omp parallel default(none) private(argc,b) firstprivate(argv) if(argc > 0) num_threads(e
[all...]
H A Dparallel_sections_ast_print.cpp40 #pragma omp parallel sections default(none), private(argc, b) firstprivate(argv) shared(d) if (argc > 0) num_threads(C) copyin(S < T > ::TS) proc_bind(master) reduction(+ : c) reduction(max : e)
44 #pragma omp parallel sections if (C) num_threads(s) proc_bind(close) reduction(^ : e, f) reduction(&& : g) lastprivate(b, c)
61 // CHECK-NEXT: #pragma omp parallel sections default(none) private(argc,b) firstprivate(argv) shared(d) if(argc > 0) num_threads(5) copyin(S<int>::TS) proc_bind(master) reduction(+: c) reduction(max: e)
65 // CHECK-NEXT: #pragma omp parallel sections if(5) num_threads(s) proc_bind(close) reduction(^: e,f) reduction(&&: g) lastprivate(b,c)
79 // CHECK-NEXT: #pragma omp parallel sections default(none) private(argc,b) firstprivate(argv) shared(d) if(argc > 0) num_threads(1) copyin(S<long>::TS) proc_bind(master) reduction(+: c) reduction(max: e)
83 // CHECK-NEXT: #pragma omp parallel sections if(1) num_threads(s) proc_bind(close) reduction(^: e,f) reduction(&&: g) lastprivate(b,c)
97 // CHECK-NEXT: #pragma omp parallel sections default(none) private(argc,b) firstprivate(argv) shared(d) if(argc > 0) num_threads(C) copyin(S<T>::TS) proc_bind(master) reduction(+: c) reduction(max: e)
101 // CHECK-NEXT: #pragma omp parallel sections if(C) num_threads(s) proc_bind(close) reduction(^: e,f) reduction(&&: g) lastprivate(b,c)
125 #pragma omp parallel sections default(none), private(argc, b) firstprivate(argv) if (argc > 0) num_threads(ee) copyin(a) proc_bind(spread) reduction(| : c, d) reduction(* : e) lastprivate(argv)
126 // CHECK-NEXT: #pragma omp parallel sections default(none) private(argc,b) firstprivate(argv) if(argc > 0) num_threads(e
[all...]
H A Dparallel_for_ast_print.cpp24 #pragma omp parallel for private(argc, b), firstprivate(c, d), lastprivate(d, f) collapse(N) schedule(static, N) ordered if (argc) num_threads(N) default(shared) shared(e) reduction(+ : h)
31 // CHECK-NEXT: #pragma omp parallel for private(argc,b) firstprivate(c,d) lastprivate(d,f) collapse(N) schedule(static, N) ordered if(argc) num_threads(N) default(shared) shared(e) reduction(+: h)
53 #pragma omp parallel for private(argc, b), firstprivate(argv, c), lastprivate(d, f) collapse(2) schedule(auto) ordered if (argc) num_threads(a) default(shared) shared(e) reduction(+ : h)
57 // CHECK-NEXT: #pragma omp parallel for private(argc,b) firstprivate(argv,c) lastprivate(d,f) collapse(2) schedule(auto) ordered if(argc) num_threads(a) default(shared) shared(e) reduction(+: h)
/external/compiler-rt/test/asan/TestCases/Linux/
H A Dstress_dtls.c72 int num_threads = 1; local
75 num_threads = atoi(argv[1]);
99 for (i = 0; i < num_threads; i++) {
/external/ceres-solver/internal/ceres/
H A Dprogram_evaluator.h64 // // Create num_threads evaluate preparers. Caller owns result which must
66 // EvaluatePreparer* CreateEvaluatePreparers(int num_threads);
117 jacobian_writer_.CreateEvaluatePreparers(options.num_threads)) {
119 CHECK_EQ(1, options_.num_threads)
121 << "only options.num_threads=1 is supported.";
126 options.num_threads));
160 for (int i = 0; i < options_.num_threads; ++i) {
173 #pragma omp parallel for num_threads(options_.num_threads)
263 for (int i = 0; i < options_.num_threads;
347 CreateEvaluatorScratch(const Program& program, int num_threads) argument
[all...]
H A Ddense_jacobian_writer.h59 ScratchEvaluatePreparer* CreateEvaluatePreparers(int num_threads) { argument
60 return ScratchEvaluatePreparer::Create(*program_, num_threads);
H A Ddynamic_compressed_row_jacobian_writer.cc43 DynamicCompressedRowJacobianWriter::CreateEvaluatePreparers(int num_threads) { argument
44 return ScratchEvaluatePreparer::Create(*program_, num_threads);
H A Dminimizer.h64 num_threads = options.num_threads;
122 int num_threads; member in struct:ceres::internal::Minimizer::Options
H A Dpreconditioner.h54 num_threads(1),
65 int num_threads; member in struct:ceres::internal::Preconditioner::Options
/external/chromium_org/third_party/tcmalloc/chromium/src/base/
H A Dthread_lister.c73 int ResumeAllProcessThreads(int num_threads, pid_t *thread_pids) { argument
/external/chromium_org/third_party/tcmalloc/vendor/src/base/
H A Dthread_lister.c73 int ResumeAllProcessThreads(int num_threads, pid_t *thread_pids) { argument
/external/lldb/test/functionalities/thread/
H A DTestNumThreads.py59 num_threads = process.GetNumThreads()
61 self.assertTrue(num_threads == 4, 'Number of expected threads and actual threads do not match.')
/external/lldb/test/functionalities/thread/state/
H A DTestThreadStates.py117 num_threads = process.GetNumThreads()
119 self.assertTrue(num_threads == 1, 'Number of expected threads and actual threads do not match.')
158 num_threads = process.GetNumThreads()
160 self.assertTrue(num_threads == 1, 'Number of expected threads and actual threads do not match.')
207 num_threads = process.GetNumThreads()
209 self.assertTrue(num_threads == 1, 'Number of expected threads and actual threads do not match.')
251 num_threads = process.GetNumThreads()
253 self.assertTrue(num_threads == 1, 'Number of expected threads and actual threads do not match.')
306 num_threads = process.GetNumThreads()
308 self.assertTrue(num_threads
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
H A Dlp_screen.c487 screen->num_threads = util_cpu_caps.nr_cpus > 1 ? util_cpu_caps.nr_cpus : 0;
489 screen->num_threads = 0;
491 screen->num_threads = debug_get_num_option("LP_NUM_THREADS", screen->num_threads);
492 screen->num_threads = MIN2(screen->num_threads, LP_MAX_THREADS);
494 screen->rast = lp_rast_create(screen->num_threads);
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_screen.c487 screen->num_threads = util_cpu_caps.nr_cpus > 1 ? util_cpu_caps.nr_cpus : 0;
489 screen->num_threads = 0;
491 screen->num_threads = debug_get_num_option("LP_NUM_THREADS", screen->num_threads);
492 screen->num_threads = MIN2(screen->num_threads, LP_MAX_THREADS);
494 screen->rast = lp_rast_create(screen->num_threads);
/external/chromium_org/tools/android/ps_ext/
H A Dps_ext.c128 long num_threads = 0; local
142 &maj_faults, &utime, &ktime, &num_threads, &start_time, &vm_rss);
163 num_threads,
/external/chromium_org/cc/resources/
H A Draster_worker_pool.h29 static void SetNumRasterThreads(int num_threads);
/external/chromium_org/native_client_sdk/src/libraries/sdk_util/
H A Dthread_pool.h20 // ThreadPool is a class to manage num_threads and assign
23 // If 0 is passed in for num_threads, all tasks will be
29 explicit ThreadPool(int num_threads);
/external/lldb/source/Target/
H A DThreadList.cpp120 const uint32_t num_threads = m_threads.size(); local
121 for (idx = 0; idx < num_threads; ++idx)
142 const uint32_t num_threads = m_threads.size(); local
143 for (idx = 0; idx < num_threads; ++idx)
165 const uint32_t num_threads = m_threads.size(); local
166 for (idx = 0; idx < num_threads; ++idx)
188 const uint32_t num_threads = m_threads.size(); local
189 for (idx = 0; idx < num_threads; ++idx)
210 const uint32_t num_threads = m_threads.size(); local
211 for (idx = 0; idx < num_threads;
234 const uint32_t num_threads = m_threads.size(); local
446 const uint32_t num_threads = m_threads.size(); local
756 const uint32_t num_threads = m_threads.size(); local
[all...]
/external/lldb/test/functionalities/thread/create_during_step/
H A DTestCreateDuringStep.py107 num_threads = process.GetNumThreads()
110 self.assertTrue(num_threads == 2, 'Number of expected threads and actual threads do not match.')
139 num_threads = process.GetNumThreads()
142 self.assertTrue(num_threads == 3, 'Number of expected threads and actual threads do not match after thread exit.')
/external/lldb/test/functionalities/thread/exit_during_step/
H A DTestExitDuringStep.py107 num_threads = process.GetNumThreads()
110 self.assertTrue(num_threads == 3, 'Number of expected threads and actual threads do not match.')
143 num_threads = process.GetNumThreads()
146 self.assertTrue(num_threads == 2, 'Number of expected threads and actual threads do not match after thread exit.')
/external/chromium_org/third_party/libjingle/source/talk/media/base/
H A Dcodec.h291 num_threads(kDefaultMaxThreads),
297 num_threads(kDefaultMaxThreads),
303 num_threads(t),
309 num_threads = config.num_threads;
316 num_threads == config.num_threads &&
325 int num_threads; member in struct:cricket::VideoEncoderConfig
/external/lldb/test/functionalities/thread/break_after_join/
H A DTestBreakAfterJoin.py66 num_threads = process.GetNumThreads()
69 self.assertTrue(num_threads == 6, 'Number of expected threads and actual threads do not match.')
/external/lldb/test/functionalities/thread/exit_during_break/
H A DTestExitDuringBreak.py66 num_threads = process.GetNumThreads()
69 self.assertTrue(num_threads >= 5, 'Number of expected threads and actual threads do not match.')
/external/lldb/test/functionalities/thread/multi_break/
H A DTestMultipleBreakpoints.py63 num_threads = process.GetNumThreads()
66 self.assertTrue(num_threads == 3, 'Number of expected threads and actual threads do not match.')

Completed in 2590 milliseconds

123456