Lines Matching defs:sum_
28 void RT_API_ATTRS Reinitialize() { sum_ = 0; }
31 *p = static_cast<A>(sum_);
35 sum_ += *array_.Element<A>(at);
41 INTERMEDIATE sum_{0};
48 void RT_API_ATTRS Reinitialize() { sum_ = correction_ = 0; }
49 template <typename A> RT_API_ATTRS A Result() const { return sum_; }
57 auto oldSum{sum_};
58 sum_ += next;
59 correction_ = (sum_ - oldSum) - next; // algebraically zero
69 INTERMEDIATE sum_{0.0}, correction_{0.0};