Searched refs:counts_ (Results 1 – 4 of 4) sorted by relevance
/third_party/node/deps/v8/src/diagnostics/ |
D | basic-block-profiler.cc | 21 : block_ids_(n_blocks), counts_(n_blocks, 0) {} in DEFINE_LAZY_LEAKY_OBJECT_GETTER() 44 counts_[i] = 0; in ResetCounts() 84 counts_.push_back(counts.get_uint32(i)); in CopyFromJSHeap() 90 CHECK_EQ(block_ids_.size(), counts_.size()); in CopyFromJSHeap() 114 counts->set_uint32(i, counts_[i]); in CopyToJSHeap() 178 out.push_back(data.counts_[j] > 0); in GetCoverageBitmap() 187 if (counts_[i] > 0) { in Log() 190 block_ids_[i], counts_[i]); in Log() 199 if (std::all_of(d.counts_.cbegin(), d.counts_.cend(), in operator <<() 209 os << "schedule for " << name << " (B0 entered " << d.counts_[0] in operator <<() [all …]
|
D | basic-block-profiler.h | 36 DCHECK_EQ(block_ids_.size(), counts_.size()); in n_blocks() 39 const uint32_t* counts() const { return &counts_[0]; } in counts() 65 std::vector<uint32_t> counts_; variable
|
/third_party/node/deps/v8/src/profiler/ |
D | profiler-stats.cc | 15 counts_[reason].fetch_add(1, std::memory_order_relaxed); in AddReason() 20 counts_[i].store(0, std::memory_order_relaxed); in Clear() 28 counts_[i].load(std::memory_order_relaxed)); in Print()
|
D | profiler-stats.h | 43 std::atomic_int counts_[Reason::kNumberOfReasons] = {}; variable
|