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

/external/v8/src/
H A Dcounters.h404 void AddSample(double current_ms, double current_value);
407 double Aggregate(double current_ms, double current_value);
418 void AggregatedMemoryHistogram<Histogram>::AddSample(double current_ms, argument
422 start_ms_ = current_ms;
424 last_ms_ = current_ms;
429 if (current_ms < last_ms_ + kEpsilon) {
435 if (end_ms <= current_ms + kEpsilon) {
436 // Linearly interpolate between the last_ms_ and the current_ms.
437 double slope = (current_value - last_value_) / (current_ms - last_ms_);
440 // to the current_ms
476 Aggregate(double current_ms, double current_value) argument
[all...]
/external/v8/src/heap/
H A Dgc-tracer.h245 void SampleAllocation(double current_ms, size_t new_space_counter_bytes,
249 void AddAllocation(double current_ms);
H A Dgc-tracer.cc314 void GCTracer::SampleAllocation(double current_ms, argument
319 allocation_time_ms_ = current_ms;
330 double duration = current_ms - allocation_time_ms_;
331 allocation_time_ms_ = current_ms;
341 void GCTracer::AddAllocation(double current_ms) { argument
342 allocation_time_ms_ = current_ms;

Completed in 96 milliseconds