Lines Matching full:aggregate_value_
377 aggregate_value_(0.0),
393 // 4) aggregate_value_ is the average of the function that is constructed by
402 double aggregate_value_;
412 aggregate_value_ = current_value;
436 // Take aggregate_value_ into account.
439 // There is no aggregate_value_ for i > 0.
449 aggregate_value_ = current_value;
452 aggregate_value_ = last_value_;
456 aggregate_value_ = current_ms > start_ms_ + kEpsilon
458 : aggregate_value_;
471 // The aggregate_value_ is the average for [start_ms_; last_ms_].
473 // Return the weighted average of the aggregate_value_ and the value.
474 return aggregate_value_ * ((last_ms_ - start_ms_) / interval_ms) +