Searched refs:mBucketBoundaries (Results 1 – 1 of 1) sorted by relevance
45 private final int[] mBucketBoundaries; field in IntHistogram90 mBucketBoundaries = bucketBoundaries.clone(); in IntHistogram()113 return mBucketBoundaries.length + 1; in numTotalBuckets()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()191 int insertionIndex = Arrays.binarySearch(mBucketBoundaries, value); in getBucketKey()216 sb.append(mBucketBoundaries[bucketKey - 1]); in toString()219 if (bucketKey == mBucketBoundaries.length) { in toString()222 sb.append(mBucketBoundaries[bucketKey]).append(')'); in toString()