Home
last modified time | relevance | path

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

/frameworks/base/tests/JankBench/app/src/main/java/com/android/benchmark/results/
DUiBenchmarkResult.java57 private final DescriptiveStatistics[] mStoredStatistics; field in UiBenchmarkResult
60 mStoredStatistics = new DescriptiveStatistics[METRICS.length]; in UiBenchmarkResult()
65 mStoredStatistics = new DescriptiveStatistics[METRICS.length]; in UiBenchmarkResult()
79 return mStoredStatistics[pos].getMean(); in getAverage()
84 return mStoredStatistics[pos].getMin(); in getMinimum()
89 return mStoredStatistics[pos].getMax(); in getMaximum()
94 double[] storedMetrics = mStoredStatistics[pos].getValues(); in getMaximumIndex()
106 return mStoredStatistics[getMetricPosition(metricId)].getElement(index); in getMetricAtIndex()
114 return mStoredStatistics[metricPos].getPercentile(percentile); in getPercentile()
118 if (mStoredStatistics.length == 0) { in getTotalFrameCount()
[all …]