Lines Matching refs:Stat1
13 class Stat1; variable
18 typedef Stat1<float, int64_t> Stat1_f;
19 typedef Stat1<double, int64_t> Stat1_d;
31 class Stat1 {
33 typedef Stat1<VType, NumType> Self;
35 Stat1() { Clear(); } in Stat1() function
37 explicit Stat1(const VType &dat) { in Stat1() function
44 explicit Stat1(const VType *begin, const VType *end) { in Stat1() function
47 (*this) += Stat1(*item); in Stat1()
51 Stat1(const VType &dat, const NumType &w) { in Stat1() function
57 Stat1(const Self &stat) { in Stat1() function
200 std::ostream &operator<<(std::ostream &out, const Stat1<VType, NumType> &s) {
211 class Stat1MinMax : public Stat1<VType, NumType> {
217 explicit Stat1MinMax(const VType &dat) : Stat1<VType, NumType>(dat) { in Stat1MinMax()
231 : Stat1<VType, NumType>(dat, w) { in Stat1MinMax()
236 Stat1MinMax(const Self &stat) : Stat1<VType, NumType>(stat) { in Stat1MinMax()
242 Stat1<VType, NumType>::Clear(); in Clear()
253 this->Stat1<VType, NumType>::operator=(stat);
260 this->Stat1<VType, NumType>::operator+=(stat);
267 this->Stat1<VType, NumType>::operator*=(stat);