Lines Matching defs:threads
138 In a multithreaded test, it is guaranteed that none of the threads will start
154 BENCHMARK(BM_MultiThreaded)->Threads(4);
349 // presented divided by the number of threads.
451 // NOTE: The "real time" measurement is per-thread. If different threads
481 // calls to `KeepRunning()` will block until all threads have completed
482 // the `KeepRunning()` loop. If multiple threads report an error only the
587 // Index of the executing thread. Values from [0, threads).
589 // Number of threads concurrently executing the benchmark.
590 const int threads;
727 // Threads, etc.
757 // If a particular benchmark is I/O bound, runs multiple threads internally or
785 // in multiple threads. This may be useful when measuring the scaling
788 // Run one instance of this benchmark concurrently in t threads.
789 Benchmark* Threads(int t);
794 // particular value t consists of t threads running the benchmark
799 // Foo in 2 threads
800 // Foo in 4 threads
801 // Foo in 8 threads
802 // Foo in 16 threads
805 // For each value n in the range, run this benchmark once using n threads.
808 // a benchmark with 1, 4, 7 and 8 threads.