chromium/third_party/leveldatabase/src/util/histogram.cc

// Copyright (c) 2011 The LevelDB Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. See the AUTHORS file for names of contributors.

#include "util/histogram.h"

#include <cmath>
#include <cstdio>

#include "port/port.h"

namespace leveldb {

const double Histogram::kBucketLimit[kNumBuckets] =;

void Histogram::Clear() {}

void Histogram::Add(double value) {}

void Histogram::Merge(const Histogram& other) {}

double Histogram::Median() const {}

double Histogram::Percentile(double p) const {}

double Histogram::Average() const {}

double Histogram::StandardDeviation() const {}

std::string Histogram::ToString() const {}

}  // namespace leveldb