Home
last modified time | relevance | path

Searched refs:alive_threads_ (Results 1 – 4 of 4) sorted by relevance

/external/google-benchmark/src/
Dthread_manager.h15 : alive_threads_(num_threads), start_stop_barrier_(num_threads) {} in ThreadManager()
27 if (--alive_threads_ == 0) { in NotifyThreadComplete()
36 [this]() { return alive_threads_ == 0; }); in WaitForAllThreads()
55 std::atomic<int> alive_threads_; variable
/external/libcxx/utils/google-benchmark/src/
Dthread_manager.h15 : alive_threads_(num_threads), start_stop_barrier_(num_threads) {} in ThreadManager()
27 if (--alive_threads_ == 0) { in NotifyThreadComplete()
36 [this]() { return alive_threads_ == 0; }); in WaitForAllThreads()
55 std::atomic<int> alive_threads_; variable
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_thread_registry.cc99 alive_threads_(0), in ThreadRegistry()
113 if (alive) *alive = alive_threads_; in GetNumberOfThreads()
147 alive_threads_++; in CreateThread()
148 if (max_alive_threads_ < alive_threads_) { in CreateThread()
150 CHECK_EQ(alive_threads_, max_alive_threads_); in CreateThread()
254 CHECK_GT(alive_threads_, 0); in FinishThread()
255 alive_threads_--; in FinishThread()
Dsanitizer_thread_registry.h132 uptr alive_threads_; // Created or running. variable