Lines Matching refs:total

124     Result total() const { return this->s.total(); }
153 Result total() const { return this->s.total(); }
178 Result total() const { return this->s.total(); }
554 * a current count and updates a total (count * ticks) when this count
566 /** The total count for all tick. */
567 mutable Result total;
579 : current(0), lastReset(0), total(0), last(0)
583 * Set the current count to the one provided, update the total and last
590 total += current * (curTick() - last);
621 return (Result)(total + current) / (Result)(curTick() - lastReset + 1);
627 bool zero() const { return total == 0.0; }
635 total += current * (curTick() - last);
645 total = 0.0;
765 Result total() { return result(); }
796 Result total() const { return *scalar; }
809 Result total() const { return (*functor)(); }
828 Result total() const { return (object->*method)(); }
882 Result total() const { return proxy->total(); };
1098 * Return a total of all entries in this vector.
1099 * @return The total of all vector entries.
1102 total() const
1104 Result total = 0.0;
1106 total += data(i)->result();
1107 return total;
1210 total() const
1212 Result total = 0.0;
1214 total += data(i)->result();
1215 return total;
1335 * Return a total of all entries in this vector.
1336 * @return The total of all vector entries.
1339 total() const
1341 Result total = 0.0;
1343 total += data(i)->result();
1344 return total;
1782 /** Current total. */
2117 * Return the total of the result vector.
2118 * @return The total of the result vector.
2120 virtual Result total() const = 0;
2149 Result total() const { return data->result(); };
2179 total() const
2208 Result total() const { return data->total(); };
2224 Result total() const { return vresult[0]; };
2240 total() const
2328 total() const
2331 Result total = 0.0;
2333 total += vec[i];
2334 return total;
2390 total() const override
2395 Result total = 0.0;
2415 total += vec[i];
2418 return total;
2470 total() const
2490 return csprintf("total(%s)", l->str());
2809 Result total() const { return this->s.total(); }
3069 * Return the total Formula result. If there is a Vector
3073 * x is size 3, then total() will return (x[1]+x[2]+x[3])/y. If
3074 * there is no Vector component, total() returns the same value as
3076 * @return The total of the result vector.
3078 Result total() const;
3111 Result total() const { return formula.total(); }