Lines Matching refs:Threads
123 In a multithreaded test, it is guaranteed that none of the threads will start
139 BENCHMARK(BM_MultiThreaded)->Threads(4);
250 // function will block until all threads have made their ith call.
264 // function will block until all threads have made their ith call.
361 // Index of the executing thread. Values from [0, threads).
363 // Number of threads concurrently executing the benchmark.
364 const int threads;
416 // Threads, etc.
423 // If a particular benchmark is I/O bound, runs multiple threads internally or
431 // in multiple threads. This may be useful when measuring the scaling
434 // Run one instance of this benchmark concurrently in t threads.
435 Benchmark* Threads(int t);
440 // particular value t consists of t threads running the benchmark
445 // Foo in 2 threads
446 // Foo in 4 threads
447 // Foo in 8 threads
448 // Foo in 16 threads