OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:bucket_width_
(Results
1 - 2
of
2
) sorted by null
/art/runtime/base/
histogram-inl.h
34
Value new_max = ((value + 1) /
bucket_width_
+ 1) *
bucket_width_
;
56
bucket_width_
(initial_bucket_width) {
67
bucket_width_
*= 2;
78
max_ +=
bucket_width_
;
88
const size_t bucket_idx = static_cast<size_t>((val - min_) /
bucket_width_
);
110
max_ =
bucket_width_
* GetBucketCount();
130
return min_ + bucket_idx *
bucket_width_
;
histogram.h
104
Value
bucket_width_
;
member in class:art::Histogram
106
// starting at min_ + i *
bucket_width_
with size bucket_size_.
Completed in 192 milliseconds