HomeSort by relevance Sort by last modified time
    Searched refs:alive_threads_ (Results 1 - 4 of 4) sorted by null

  /external/compiler-rt/lib/sanitizer_common/
sanitizer_thread_registry.cc 99 alive_threads_(0),
113 if (alive) *alive = alive_threads_;
147 alive_threads_++;
148 if (max_alive_threads_ < alive_threads_) {
150 CHECK_EQ(alive_threads_, max_alive_threads_);
254 CHECK_GT(alive_threads_, 0);
255 alive_threads_--;
sanitizer_thread_registry.h 132 uptr alive_threads_; // Created or running. member in class:__sanitizer::ThreadRegistry
  /external/google-benchmark/src/
benchmark.cc 119 : alive_threads_(num_threads), start_stop_barrier_(num_threads) {}
131 if (--alive_threads_ == 0) {
140 [this]() { return alive_threads_ == 0; });
160 std::atomic<int> alive_threads_; member in class:benchmark::internal::ThreadManager
  /external/libcxx/utils/google-benchmark/src/
benchmark.cc 113 : alive_threads_(num_threads), start_stop_barrier_(num_threads) {}
125 if (--alive_threads_ == 0) {
134 [this]() { return alive_threads_ == 0; });
153 std::atomic<int> alive_threads_; member in class:benchmark::internal::ThreadManager

Completed in 246 milliseconds