Searched refs:num_threads_ (Results 1 - 13 of 13) sorted by relevance

/external/chromium_org/native_client_sdk/src/libraries/sdk_util/
H A Dthread_pool.cc19 : threads_(NULL), counter_(0), num_threads_(num_threads), exiting_(false),
21 if (num_threads_ > 0) {
33 threads_ = new pthread_t[num_threads_];
34 for (int i = 0; i < num_threads_; i++) {
46 if (num_threads_ > 0) {
74 for (int i = 0; i < num_threads_; ++i)
77 for (int i = 0; i < num_threads_; ++i)
112 for (int i = 0; i < num_threads_; i++)
118 for (int i = 0; i < num_threads_; i++)
133 if (num_threads_ >
[all...]
H A Dthread_pool.h41 const int num_threads_; member in class:sdk_util::ThreadPool
/external/chromium/base/threading/
H A Dsimple_thread.cc82 num_threads_(num_threads),
94 for (int i = 0; i < num_threads_; ++i) {
105 AddWork(NULL, num_threads_);
108 for (int i = 0; i < num_threads_; ++i) {
H A Dsimple_thread.h175 int num_threads_; member in class:base::DelegateSimpleThreadPool
/external/chromium_org/base/threading/
H A Dsimple_thread.cc89 num_threads_(num_threads),
101 for (int i = 0; i < num_threads_; ++i) {
112 AddWork(NULL, num_threads_);
115 for (int i = 0; i < num_threads_; ++i) {
H A Dsimple_thread.h181 int num_threads_; member in class:base::DelegateSimpleThreadPool
/external/ceres-solver/internal/ceres/
H A Dschur_eliminator.h222 : num_threads_(options.num_threads) {
344 int num_threads_; member in class:ceres::internal::SchurEliminator
H A Dschur_eliminator_impl.h149 if (num_threads_ > 1) {
153 buffer_.reset(new double[buffer_size_ * num_threads_]);
158 chunk_outer_product_buffer_.reset(new double[buffer_size_ * num_threads_]);
185 #pragma omp parallel for num_threads(num_threads_) schedule(dynamic)
219 #pragma omp parallel for num_threads(num_threads_) schedule(dynamic)
307 #pragma omp parallel for num_threads(num_threads_) schedule(dynamic)
/external/chromium_org/native_client_sdk/src/examples/demo/voronoi/
H A Dvoronoi.cc140 int num_threads_; member in class:Voronoi
170 Voronoi::Voronoi() : num_regions_(kDefaultNumRegions), num_threads_(0),
175 workers_ = new ThreadPool(num_threads_);
/external/chromium_org/native_client_sdk/src/examples/demo/earth/
H A Dearth.cc269 int num_threads_; member in class:Planet
349 Planet::Planet() : base_tex_(NULL), night_tex_(NULL), num_threads_(0),
355 workers_ = new ThreadPool(num_threads_);
/external/chromium_org/native_client_sdk/src/gonacl_appengine/src/
H A Dearth.cc292 int num_threads_; member in class:Planet
400 num_threads_ = 0;
401 workers_ = new ThreadPool(num_threads_);
/external/chromium_org/v8/test/cctest/
H A Dtest-debug.cc4708 int num_threads_; member in class:ThreadBarrier
4716 : num_threads_(num_threads), num_blocked_(0) {
4735 if (num_blocked_ == num_threads_ - 1) {
4737 for (int i = 0; i < num_threads_ - 1; ++i) {
/external/v8/test/cctest/
H A Dtest-debug.cc4580 int num_threads_; member in class:ThreadBarrier
4588 : num_threads_(num_threads), num_blocked_(0) {
4605 if (num_blocked_ == num_threads_ - 1) {
4607 for (int i = 0; i < num_threads_ - 1; ++i) {

Completed in 206 milliseconds