Home
last modified time | relevance | path

Searched refs:current_ms (Results 1 – 3 of 3) sorted by relevance

/third_party/node/deps/v8/src/logging/
Dcounters.h394 void AddSample(double current_ms, double current_value);
406 double Aggregate(double current_ms, double current_value);
417 void AggregatedMemoryHistogram<Histogram>::AddSample(double current_ms, in AddSample() argument
421 start_ms_ = current_ms; in AddSample()
423 last_ms_ = current_ms; in AddSample()
428 if (current_ms < last_ms_ + kEpsilon) { in AddSample()
434 if (end_ms <= current_ms + kEpsilon) { in AddSample()
436 double slope = (current_value - last_value_) / (current_ms - last_ms_); in AddSample()
440 for (i = 0; i < kMaxSamples && end_ms <= current_ms + kEpsilon; i++) { in AddSample()
458 start_ms_ = current_ms; in AddSample()
[all …]
/third_party/node/deps/v8/src/heap/
Dgc-tracer.h284 void SampleAllocation(double current_ms, size_t new_space_counter_bytes,
289 void AddAllocation(double current_ms);
Dgc-tracer.cc584 void GCTracer::SampleAllocation(double current_ms, in SampleAllocation() argument
590 allocation_time_ms_ = current_ms; in SampleAllocation()
604 double duration = current_ms - allocation_time_ms_; in SampleAllocation()
605 allocation_time_ms_ = current_ms; in SampleAllocation()
616 void GCTracer::AddAllocation(double current_ms) { in AddAllocation() argument
617 allocation_time_ms_ = current_ms; in AddAllocation()