Home
last modified time | relevance | path

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

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/util/
DIntHistogram.java120 int bucketKey = mBuckets.keyAt(bucketIndex); in getBucketByIndex() local
121 int start = bucketKey == 0 in getBucketByIndex()
122 ? Integer.MIN_VALUE : mBucketBoundaries[bucketKey - 1]; in getBucketByIndex()
123 int end = bucketKey == mBucketBoundaries.length in getBucketByIndex()
124 ? Integer.MAX_VALUE : mBucketBoundaries[bucketKey]; in getBucketByIndex()
140 int bucketKey = getBucketKey(value); in add() local
141 int curBucketValue = mBuckets.get(bucketKey); in add()
142 mBuckets.put(bucketKey, curBucketValue + count); in add()
170 int bucketKey = mBuckets.keyAt(bucketIndex); in toString() local
172 if (bucketKey == 0) { in toString()
[all …]