Home
last modified time | relevance | path

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

/tools/test/graphicsbenchmark/performance_tests/hostside/src/com/android/game/qualification/metric/
DHistogram.java41 @Nullable private Long mMaxCutoff; field in Histogram
59 mMaxCutoff = maxCutoff; in Histogram()
72 } else if (mMaxCutoff != null && bucket > mMaxCutoff - bucketSize){ in Histogram()
110 mCounts.lastKey() == Long.MAX_VALUE ? mMaxCutoff : mCounts.lastKey()) + 1; in plotAscii()
117 } else if (mMaxCutoff != null && Long.MAX_VALUE == key) { in plotAscii()
119 key = mMaxCutoff; in plotAscii()
145 if (mMaxCutoff != null && value > mMaxCutoff) { in findBucket()