Home
last modified time | relevance | path

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

/art/libartbase/base/
Dhistogram-inl.h38 Value new_max = ((value + 1) / bucket_width_ + 1) * bucket_width_; in AddValue() local
39 DCHECK_GT(new_max, max_); in AddValue()
40 GrowBuckets(new_max); in AddValue()
71 inline void Histogram<Value>::GrowBuckets(Value new_max) { in GrowBuckets() argument
72 while (max_ < new_max) { in GrowBuckets()