Home | History | Annotate | Download | only in src

Lines Matching refs:Threads

58               "used by all threads that make up the test.  For real-time "
61 "threads.");
211 // How many threads have called Finalize()
216 int entered_; // Number of threads that have entered this barrier
226 // Enter the barrier and wait until all other threads have also
233 // Wait for all threads to enter
266 int threads; // Number of concurrent threads to use
303 void Threads(int t);
377 instance.threads = num_threads;
394 // Add the number of threads used to the name
396 instance.name += StringPrintF("/threads:%d", instance.threads);
472 void BenchmarkImp::Threads(int t) {
569 Benchmark* Benchmark::Threads(int t) {
570 imp_->Threads(t);
602 State st(iters, b->has_arg1, b->arg1, b->has_arg2, b->arg2, thread_id, b->threads);
623 pool.resize(b.threads);
637 timer_manager = std::unique_ptr<TimerManager>(new TimerManager(b.threads, &done));
643 // threads haven't been started and can't be joined. Otherwise we need
700 // Report the total iterations across all threads.
701 report.iterations = static_cast<int64_t>(iters) * b.threads;
745 threads(n_threads),
749 CHECK_LT(thread_index, threads) << "thread_index must be less than threads";