Home
last modified time | relevance | path

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

/tools/tradefederation/core/tests/src/com/android/tradefed/util/
DSimpleStatsTest.java40 assertNull(mStats.mean()); in testStats_empty()
62 assertEquals(5.5, mStats.mean(), 0.1); in testStats_evenCount()
82 assertEquals(5.0, mStats.mean(), 0.1); in testStats_oddCount()
102 assertEquals(55.0 / 15.0, mStats.mean(), 0.1); in testStats_skewedMedian()
/tools/tradefederation/core/src/com/android/tradefed/util/
DSimpleStats.java79 public Double mean() { in mean() method in SimpleStats
144 Double avg = mean(); in stdev()
166 Double avg = mean(); in meanOverOneStandardDeviationRange()
/tools/acloud/
DLICENSE10 "License" shall mean the terms and conditions for use, reproduction,
13 "Licensor" shall mean the copyright owner or entity authorized by
16 "Legal Entity" shall mean the union of the acting entity and all
24 "You" (or "Your") shall mean an individual or Legal Entity
27 "Source" form shall mean the preferred form for making modifications,
31 "Object" form shall mean any form resulting from mechanical
36 "Work" shall mean the work of authorship, whether in Source or
41 "Derivative Works" shall mean any work, whether in Source or Object
49 "Contribution" shall mean any work of authorship, including
63 "Contributor" shall mean Licensor and any individual or Legal Entity
/tools/apksig/
DLICENSE22 "License" shall mean the terms and conditions for use, reproduction,
25 "Licensor" shall mean the copyright owner or entity authorized by
28 "Legal Entity" shall mean the union of the acting entity and all
36 "You" (or "Your") shall mean an individual or Legal Entity
39 "Source" form shall mean the preferred form for making modifications,
43 "Object" form shall mean any form resulting from mechanical
48 "Work" shall mean the work of authorship, whether in Source or
53 "Derivative Works" shall mean any work, whether in Source or Object
61 "Contribution" shall mean any work of authorship, including
75 "Contributor" shall mean Licensor and any individual or Legal Entity
/tools/tradefederation/core/src/com/android/tradefed/testtype/metricregression/
DDetectRegression.java244 final double mean = calcMean(before); in computeRegression() local
248 if (Math.abs(value - mean) > stdDev * STD_DEV_THRESHOLD) { in computeRegression()
262 final double mean = calcMean(list); in calcStdDev() local
264 list.stream().collect(Collectors.averagingDouble(x -> Math.pow(x - mean, 2)))); in calcStdDev()
/tools/tradefederation/core/src/com/android/tradefed/device/metric/
DAtraceRunMetricCollector.java180 Double.toString(resultAggregate.getValue().mean() in aggregateMetrics()
183 Double.toString(resultAggregate.getValue().mean())); in aggregateMetrics()
/tools/tradefederation/core/prod-tests/src/com/android/performance/tests/
DMicroBenchTest.java338 stats.size(), stats.mean(), unit, stats.stdev(), unit); in parseStats()
340 if (stats.mean() == null) { in parseStats()
353 Double.toString(stats.mean())); in parseStats()
DEmmcPerformanceTest.java226 if (stats.mean() != null) { in runTest()
235 CLog.i("Test %s finished: mean=%f, stdev=%f, samples=%d", testKey, stats.mean(), in runTest()
DAppTransitionTests.java657 activityMetrics.put(appNameKey + "_avg", stats.mean().toString()); in computeAndUploadResults()
/tools/test/connectivity/acts/framework/acts/test_utils/wifi/rtt/
Drtt_test_utils.py363 stats['distance_mean'] = statistics.mean(distances)
367 stats['rssi_mean'] = statistics.mean(rssis)
/tools/tradefederation/core/src/com/android/tradefed/device/
DTopHelper.java335 return stats.mean(); in getAveragePercentage()
/tools/test/connectivity/acts/framework/acts/test_utils/bt/
DPowerBaseTest.py376 statistics.mean(average_for_a_cycle) * self.THOUSAND,
575 statistics.mean(average_for_a_cycle) * self.THOUSAND,
/tools/tradefederation/core/prod-tests/src/com/android/graphics/tests/
DOpenGlPerformanceTest.java247 double averageFps = simpleStats.mean(); in logOutputFile()
/tools/test/connectivity/acts/framework/acts/test_utils/wifi/aware/
Daware_test_utils.py312 data_mean = statistics.mean(data)