Home
last modified time | relevance | path

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

/external/v8/src/
Dcounters.h556 void AddSample(double current_ms, double current_value);
568 double Aggregate(double current_ms, double current_value);
580 void AggregatedMemoryHistogram<Histogram>::AddSample(double current_ms, in AddSample() argument
584 start_ms_ = current_ms; in AddSample()
586 last_ms_ = current_ms; in AddSample()
591 if (current_ms < last_ms_ + kEpsilon) { in AddSample()
597 if (end_ms <= current_ms + kEpsilon) { in AddSample()
599 double slope = (current_value - last_value_) / (current_ms - last_ms_); in AddSample()
603 for (i = 0; i < kMaxSamples && end_ms <= current_ms + kEpsilon; i++) { in AddSample()
621 start_ms_ = current_ms; in AddSample()
[all …]
/external/v8/src/heap/
Dgc-tracer.cc368 void GCTracer::SampleAllocation(double current_ms, in SampleAllocation() argument
373 allocation_time_ms_ = current_ms; in SampleAllocation()
384 double duration = current_ms - allocation_time_ms_; in SampleAllocation()
385 allocation_time_ms_ = current_ms; in SampleAllocation()
395 void GCTracer::AddAllocation(double current_ms) { in AddAllocation() argument
396 allocation_time_ms_ = current_ms; in AddAllocation()
Dgc-tracer.h219 void SampleAllocation(double current_ms, size_t new_space_counter_bytes,
223 void AddAllocation(double current_ms);