Home
last modified time | relevance | path

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

/tools/test/graphicsbenchmark/performance_tests/hostside/test/com/android/game/qualification/metric/
DHistogramTest.java39 Histogram histogram = new Histogram(data, 1L, null, null); in testSimple() local
41 Map<Long, Integer> counts = histogram.getCounts(); in testSimple()
51 histogram.plotAscii(out, 2); in testSimple()
63 Histogram histogram = new Histogram(data, 1L,-1L, 1L); in testCutoff() local
65 Map<Long, Integer> counts = histogram.getCounts(); in testCutoff()
79 Histogram histogram = new Histogram(data, 1L, 1L, 3L); in testPlotCutoff() local
81 Map<Long, Integer> counts = histogram.getCounts(); in testPlotCutoff()
87 histogram.plotAscii(out, 1); in testPlotCutoff()
100 Histogram histogram = new Histogram(data, 3L, null, null); in testBuckets() local
102 Map<Long, Integer> counts = histogram.getCounts(); in testBuckets()
[all …]
/tools/tradefederation/contrib/src/com/android/media/tests/
DAudioLoopbackTestHelper.java501 final int[] histogram = new int[(int) mLatencyStats.mMax + 1]; in processTestData() local
504 histogram[(int) rd.mLatencyMs.floatValue()]++; in processTestData()
512 for (int i = 0; i < histogram.length; i++) { in processTestData()
513 if (histogram[i] > 0) { in processTestData()
514 CLog.i(String.format("%1$01d ms => %2$d", i, histogram[i])); in processTestData()
/tools/test/graphicsbenchmark/performance_tests/hostside/src/com/android/game/qualification/metric/
DGameQualificationFpsCollector.java321 Histogram histogram = in printHistogram() local
323 histogram.plotAscii(output, 100); in printHistogram()
/tools/dexter/dexter/
Dexperimental.cc457 static void PrintHistogram(const std::map<int, int> histogram, const char* name) { in PrintHistogram() argument
460 for (const auto& kv : histogram) { in PrintHistogram()
464 for (const auto& kv : histogram) { in PrintHistogram()