Searched refs:num_threads (Results 101 - 125 of 135) sorted by relevance

123456

/external/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp1098 const size_t num_threads = GetThreadList().GetSize(); local
1104 if (m_continue_c_tids.size() == num_threads)
1175 if (num_continue_c_tids == num_threads)
1196 if ((num_continue_C_tids + num_continue_c_tids) == num_threads &&
1238 if (num_continue_s_tids == num_threads)
1259 if (num_continue_S_tids == num_threads)
1266 for (size_t i=1; i<num_threads; ++i)
1856 size_t num_threads = threads.GetSize(); local
1857 for (size_t i = 0; i < num_threads; i++)
1891 size_t num_threads local
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
H A Dlp_rast_priv.h125 unsigned num_threads; member in struct:lp_rasterizer
H A Dlp_setup.c184 scene->fence = lp_fence_create(MAX2(1, setup->num_threads));
1029 setup->num_threads = screen->num_threads;
/external/chromium_org/third_party/tcmalloc/chromium/src/base/
H A Delfcore.h373 int InternalGetCoreDump(void *frame, int num_threads, pid_t *thread_pids,
/external/chromium_org/third_party/tcmalloc/vendor/src/base/
H A Delfcore.h373 int InternalGetCoreDump(void *frame, int num_threads, pid_t *thread_pids,
/external/lldb/source/API/
H A DSBProcess.cpp241 uint32_t num_threads = 0; local
249 num_threads = process_sp->GetThreadList().GetSize(can_update);
253 log->Printf ("SBProcess(%p)::GetNumThreads () => %d", process_sp.get(), num_threads);
255 return num_threads;
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_rast_priv.h125 unsigned num_threads; member in struct:lp_rasterizer
H A Dlp_setup.c184 scene->fence = lp_fence_create(MAX2(1, setup->num_threads));
1029 setup->num_threads = screen->num_threads;
/external/libvpx/libvpx/vp9/decoder/
H A Dvp9_decodeframe.c676 const int num_threads = pbi->oxcf.max_threads; local
714 if (num_threads > 1) {
888 const int num_threads = pbi->oxcf.max_threads & ~1; local
891 // use num_threads - 1 workers.
893 vpx_malloc(num_threads * sizeof(*pbi->tile_workers)));
894 for (i = 0; i < num_threads; ++i) {
902 if (i < num_threads - 1 && !vp9_worker_reset(worker)) {
/external/lldb/scripts/Python/interface/
H A DSBProcess.i434 __swig_getmethods__["num_threads"] = GetNumThreads
435 if _newclass: num_threads = property(GetNumThreads, None, doc='''A read only property that returns the number of threads in this process as an integer.''')
/external/ceres-solver/internal/ceres/
H A Dschur_eliminator_impl.h188 #pragma omp parallel for num_threads(num_threads_) schedule(dynamic)
222 #pragma omp parallel for num_threads(num_threads_) schedule(dynamic)
310 #pragma omp parallel for num_threads(num_threads_) schedule(dynamic)
H A Dsolver.cc87 OPTION_GT(num_threads, 0);
H A Dproblem_impl.cc687 evaluator_options.num_threads = evaluate_options.num_threads;
/external/chromium_org/third_party/leveldatabase/src/db/
H A Ddb_bench.cc443 int num_threads = FLAGS_threads; local
488 num_threads++; // Add extra thread for writing
526 RunBenchmark(num_threads, name, method);
/external/lldb/source/Target/
H A DProcess.cpp4127 uint32_t num_threads = curr_thread_list.GetSize();
4138 std::vector<uint32_t> thread_index_array(num_threads);
4139 for (idx = 0; idx < num_threads; ++idx)
4154 for (idx = 0; idx < num_threads; ++idx)
4157 if (curr_thread_list.GetSize() != num_threads)
4161 log->Printf("Number of threads changed from %u to %u while processing event.", num_threads, curr_thread_list.GetSize());
5307 uint32_t num_threads = thread_list.GetSize();
5310 ts.Printf("<%u threads> ", num_threads);
5313 thread_index < num_threads;
5510 const size_t num_threads
[all...]
/external/chromium_org/third_party/cython/src/Cython/
H A DShadow.py402 def parallel(self, num_threads=None):
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/decoder/
H A Dvp9_decodeframe.c1016 const int num_threads = pbi->max_threads & ~1; local
1019 // use num_threads - 1 workers.
1021 vpx_malloc(num_threads * sizeof(*pbi->tile_workers)));
1022 for (i = 0; i < num_threads; ++i) {
1030 if (i < num_threads - 1 && !winterface->reset(worker)) {
/external/valgrind/main/drd/tests/
H A Dtsan_thread_wrappers_pthread.h524 int num_threads() { return workers_.size();} function in class:ThreadPool
/external/lldb/tools/debugserver/source/MacOSX/
H A DMachTask.cpp389 int num_threads = threads_id.size(); local
390 for (int i=0; i<num_threads; i++)
/external/opencv/cv/src/
H A Dcvdistransform.cpp497 #pragma omp parallel for num_threads(thread_count)
535 #pragma omp parallel for num_threads(thread_count) schedule(dynamic)
H A Dcvstereobm.cpp638 #pragma omp parallel sections num_threads(n)
654 #pragma omp parallel for num_threads(n) schedule(static)
/external/chromium_org/third_party/cython/src/Cython/Compiler/
H A DNodes.py7018 child_attrs = ['body', 'num_threads']
7027 num_threads = None variable in class:ParallelStatNode
7070 self.num_threads = None
7073 # Try to find num_threads and chunksize keyword arguments
7076 if dictitem.key.value == 'num_threads':
7077 self.num_threads = dictitem.value
7100 if self.num_threads:
7101 self.num_threads = self.num_threads.analyse_expressions(env)
7109 if self.num_threads i
7704 num_threads = None variable in class:ParallelWithBlockNode
[all...]
/external/gtest/src/
H A Dgtest-port.cc121 return static_cast<size_t>(process_info.num_threads);
/external/lldb/source/Commands/
H A DCommandObjectProcess.cpp840 const uint32_t num_threads = process->GetThreadList().GetSize(); local
843 for (uint32_t idx=0; idx<num_threads; ++idx)
/external/lldb/tools/driver/
H A DDriver.cpp825 const size_t num_threads = process.GetNumThreads(); local
827 for (i = 0; i < num_threads; ++i)

Completed in 839 milliseconds

123456