Home
last modified time | relevance | path

Searched refs:bucket_width_ (Results 1 – 2 of 2) sorted by relevance

/art/libartbase/base/
Dhistogram-inl.h38 Value new_max = ((value + 1) / bucket_width_ + 1) * bucket_width_; in AddValue()
64 bucket_width_(initial_bucket_width) { in Histogram()
75 bucket_width_ *= 2; in GrowBuckets()
86 max_ += bucket_width_; in GrowBuckets()
96 const size_t bucket_idx = static_cast<size_t>((val - min_) / bucket_width_); in FindBucket()
118 max_ = bucket_width_ * GetBucketCount(); in Initialize()
138 return min_ + bucket_idx * bucket_width_; in GetRange()
Dhistogram.h89 return bucket_width_; in BucketWidth()
110 Value bucket_width_; variable