Home | History | Annotate | Download | only in util

Lines Matching refs:Histogram

8 #include "util/histogram.h"
12 const double Histogram::kBucketLimit[kNumBuckets] = {
33 void Histogram::Clear() {
44 void Histogram::Add(double value) {
58 void Histogram::Merge(const Histogram& other) {
69 double Histogram::Median() const {
73 double Histogram::Percentile(double p) const {
94 double Histogram::Average() const {
99 double Histogram::StandardDeviation() const {
105 std::string Histogram::ToString() const {