Home | History | Annotate | Download | only in src

Lines Matching refs:aggregate_value_

386         aggregate_value_(0.0),
402 // 4) aggregate_value_ is the average of the function that is constructed by
411 double aggregate_value_;
421 aggregate_value_ = current_value;
445 // Take aggregate_value_ into account.
448 // There is no aggregate_value_ for i > 0.
458 aggregate_value_ = current_value;
461 aggregate_value_ = last_value_;
465 aggregate_value_ = current_ms > start_ms_ + kEpsilon
467 : aggregate_value_;
480 // The aggregate_value_ is the average for [start_ms_; last_ms_].
482 // Return the weighted average of the aggregate_value_ and the value.
483 return aggregate_value_ * ((last_ms_ - start_ms_) / interval_ms) +