Home
last modified time | relevance | path

Searched refs:histogram_ (Results 1 - 6 of 6) sorted by relevance

/third_party/node/deps/v8/src/logging/
H A Dcounters-scopes.h18 : histogram_(histogram) {} in BaseTimedHistogramScope()
21 DCHECK(histogram_->ToggleRunningState(true)); in StartInternal()
26 DCHECK(histogram_->ToggleRunningState(false)); in StopInternal()
27 histogram_->AddTimedSample(timer_.Elapsed()); in StopInternal()
32 if (histogram_->Enabled()) StartInternal(); in Start()
36 if (histogram_->Enabled()) StopInternal(); in Stop()
40 Logger::CallEventLogger(isolate, histogram_->name(), in LogStart()
45 Logger::CallEventLogger(isolate, histogram_->name(), in LogEnd()
50 TimedHistogram* histogram_; member in v8::internal::BaseTimedHistogramScope
115 histogram_ in set_histogram()
209 NestedTimedHistogram* histogram_; global() member in v8::internal::PauseNestedTimedHistogramScope
[all...]
H A Dcounters.h161 bool Enabled() { return histogram_ != nullptr; } in Enabled()
186 histogram_ = nullptr; in Initialize()
195 void Reset() { histogram_ = nullptr; } in Reset()
199 if (create_new && histogram_.load(std::memory_order_acquire) == nullptr) { in EnsureCreated()
201 if (histogram_.load(std::memory_order_relaxed) == nullptr) in EnsureCreated()
202 histogram_.store(CreateHistogram(), std::memory_order_release); in EnsureCreated()
215 std::atomic<void*> histogram_; member in v8::internal::Histogram
343 : histogram_(histogram) { in AggregatingHistogramTimerScope()
344 histogram_->Start(); in AggregatingHistogramTimerScope()
346 ~AggregatingHistogramTimerScope() { histogram_ in AggregatingHistogramTimerScope()
349 AggregatableHistogramTimer* histogram_; global() member in v8::internal::AggregatingHistogramTimerScope
364 AggregatableHistogramTimer* histogram_; global() member in v8::internal::AggregatedHistogramTimerScope
[all...]
H A Dcounters.cc51 counters_->AddHistogramSample(histogram_, sample); in AddSample()
/third_party/node/src/
H A Dhistogram-inl.h14 hdr_reset(histogram_.get()); in Reset()
26 return static_cast<double>(hdr_add(histogram_.get(), other.histogram_.get())); in Add()
36 return hdr_min(histogram_.get()); in Min()
41 return hdr_max(histogram_.get()); in Max()
46 return hdr_mean(histogram_.get()); in Mean()
51 return hdr_stddev(histogram_.get()); in Stddev()
58 return hdr_value_at_percentile(histogram_.get(), percentile); in Percentile()
65 hdr_iter_percentile_init(&iter, histogram_.get(), 1); in Percentiles()
74 bool recorded = hdr_record_value(histogram_ in Record()
[all...]
H A Dhistogram.h63 HistogramPointer histogram_;
76 Histogram* operator->() { return histogram_.get(); } in operator ->()
78 const std::shared_ptr<Histogram>& histogram() const { return histogram_; } in histogram()
81 std::shared_ptr<Histogram> histogram_; member in node::HistogramImpl
147 : histogram_(histogram->histogram()) {} in HistogramTransferData()
150 : histogram_(std::move(histogram)) {} in HistogramTransferData()
162 std::shared_ptr<Histogram> histogram_; member in node::HistogramBase::HistogramTransferData
H A Dhistogram.cc29 histogram_.reset(histogram); in Histogram()
37 : histogram_(new Histogram(options)) {} in HistogramImpl()
40 : histogram_(std::move(histogram)) {} in HistogramImpl()
354 return Create(env, std::move(histogram_)); in Deserialize()
363 tracker->TrackField("histogram", histogram_); in MemoryInfo()

Completed in 5 milliseconds