Searched refs:mCounts (Results 1 – 1 of 1) sorted by relevance
39 private SortedMap<Long, Integer> mCounts = new TreeMap<>(); // need sorted keys for plotting. field in Histogram63 mCounts.put(bucket, mCounts.getOrDefault(bucket, 0) + 1); in Histogram()68 Set<Long> keys = ImmutableSet.copyOf(mCounts.keySet()); in Histogram()71 mCounts.putIfAbsent(mMinCutoff, 0); in Histogram()73 mCounts.putIfAbsent(Long.MAX_VALUE, 0); in Histogram()75 mCounts.putIfAbsent(bucket + bucketSize, 0); in Histogram()82 return mCounts; in getCounts()96 if (mCounts.isEmpty()) { in plotAscii()101 for (int count : mCounts.values()) { in plotAscii()110 mCounts.lastKey() == Long.MAX_VALUE ? mMaxCutoff : mCounts.lastKey()) + 1; in plotAscii()[all …]