Lines Matching refs:Counter

122     Counter value() const { return this->s.value(); }
498 Counter data;
509 : data(Counter())
516 void set(Counter val) { data = val; }
521 void inc(Counter val) { data += val; }
526 void dec(Counter val) { data -= val; }
531 Counter value() const { return data; }
544 void reset(Info *info) { data = Counter(); }
549 bool zero() const { return data == Counter(); }
563 Counter current;
588 set(Counter val)
599 void inc(Counter val) { set(current + val); }
605 void dec(Counter val) { set(current - val); }
611 Counter value() const { return current; }
703 Counter value() const { return data()->value(); }
761 Counter value() { return data()->value(); }
794 Counter value() const { return *scalar; }
807 Counter value() const { return (*functor)(); }
826 Counter value() const { return (object->*method)(); }
880 Counter value() { return proxy->value(); }
917 Counter value() const { return stat.data(index)->value(); }
1402 Counter min;
1404 Counter max;
1406 Counter bucket_size;
1416 Counter min_track;
1418 Counter max_track;
1420 Counter bucket_size;
1423 Counter min_val;
1425 Counter max_val;
1427 Counter underflow;
1429 Counter overflow;
1431 Counter sum;
1433 Counter squares;
1435 Counter samples;
1436 /** Counter for each bucket. */
1452 sample(Counter val, int number)
1489 return samples == Counter();
1530 underflow = Counter();
1531 overflow = Counter();
1535 cvec[i] = Counter();
1537 sum = Counter();
1538 squares = Counter();
1539 samples = Counter();
1560 Counter min_bucket;
1562 Counter max_bucket;
1564 Counter bucket_size;
1567 Counter sum;
1569 Counter logs;
1571 Counter squares;
1573 Counter samples;
1574 /** Counter for each bucket. */
1595 sample(Counter val, int number)
1639 return samples == Counter();
1680 cvec[i] = Counter();
1682 sum = Counter();
1683 squares = Counter();
1684 samples = Counter();
1685 logs = Counter();
1703 Counter sum;
1705 Counter squares;
1707 Counter samples;
1714 : sum(Counter()), squares(Counter()), samples(Counter())
1725 sample(Counter val, int number)
1727 Counter value = val * number;
1743 bool zero() const { return samples == Counter(); }
1763 sum = Counter();
1764 squares = Counter();
1765 samples = Counter();
1783 Counter sum;
1785 Counter squares;
1792 : sum(Counter()), squares(Counter())
1802 sample(Counter val, int number)
1804 Counter value = val * number;
1819 bool zero() const { return sum == Counter(); }
1839 sum = Counter();
1840 squares = Counter();
2611 init(Counter min, Counter max, Counter bkt)
2718 init(size_type size, Counter min, Counter max, Counter bkt)
2922 /** Counter for number of samples */
2923 Counter samples;
2924 /** Counter for each bucket. */
2939 sample(Counter val, int number)
2958 return samples == Counter();