Searched defs:Histogram (Results 1 - 2 of 2) sorted by relevance

/art/runtime/base/
H A Dhistogram.h27 // Histogram analysis goes beyond simple mean and standard deviation to provide
31 template <class Value> class Histogram { class in namespace:art
37 friend class Histogram<Value>;
44 explicit Histogram(const char* name);
46 Histogram(const char* name, Value initial_bucket_width, size_t max_buckets = 100);
122 DISALLOW_COPY_AND_ASSIGN(Histogram);
H A Dhistogram-inl.h32 template <class Value> inline void Histogram<Value>::AddValue(Value value) {
42 template <class Value> inline void Histogram<Value>::AdjustAndAddValue(Value value) {
46 template <class Value> inline Histogram<Value>::Histogram(const char* name) function in class:art::Histogram
54 inline Histogram<Value>::Histogram(const char* name, Value initial_bucket_width, function in class:art::Histogram
65 inline void Histogram<Value>::GrowBuckets(Value new_max) {
87 template <class Value> inline size_t Histogram<Value>::FindBucket(Value val) const {
99 inline void Histogram<Value>::BucketiseValue(Value val) {
109 template <class Value> inline void Histogram<Valu
[all...]

Completed in 193 milliseconds