/test/vti/dashboard/src/main/java/com/android/vts/util/ |
D | StatSummary.java | 93 public void merge(StatSummary stat) { in merge() argument 94 double delta = stat.getMean() - mean; in merge() 95 int newN = n + stat.getCount(); in merge() 96 sumSq = sumSq + stat.getSumSq() + delta / newN * delta * n * stat.getCount(); in merge() 98 mean = n * recipN * mean + stat.getCount() * recipN * stat.getMean(); in merge()
|
D | BoxPlot.java | 119 StatSummary stat = in addData() local 123 stat.updateStats(value); in addData() 125 addSeriesData(label, "", stat); in addData() 164 StatSummary stat = seriesMap.get(series); in toJson() local 165 mean = stat.getMean(); in toJson() 167 if (stat.getCount() > 1) { in toJson() 168 std = stat.getStd(); in toJson() 170 count = stat.getCount(); in toJson()
|
D | ProfilingPointSummary.java | 110 StatSummary stat = in updateLabel() local 119 statSummaries.add(stat); in updateLabel()
|
D | Histogram.java | 26 import org.apache.commons.math3.stat.descriptive.rank.Percentile;
|
/test/vti/dashboard/src/main/webapp/WEB-INF/jsp/ |
D | show_profiling_overview.jsp | 69 var statArray = day.values.map(function(stat) { 73 stat.mean.toFixed(2) + 75 stat.std.toFixed(2) + 77 stat.count.toFixed(0)); 79 stat.mean, 80 stat.mean + stat.std, 81 stat.mean - stat.std, 82 stat.mean + stat.std, 83 stat.mean - stat.std,
|
/test/vti/dashboard/src/test/java/com/android/vts/util/ |
D | ProfilingPointSummaryTest.java | 59 StatSummary stat = new StatSummary(labels[i], regressionMode); in createProfilingReport() local 60 stat.updateStats(values[i]); in createProfilingReport() 61 labelStats.put(labels[i], stat); in createProfilingReport()
|
/test/vts/drivers/hal/common/driver_base/ |
D | DriverBase.cpp | 148 struct stat st; in FunctionCallBegin() 185 struct stat st; in FunctionCallBegin() 291 struct stat st; in ScanAllGcdaFiles() 330 struct stat st; in FunctionCallEnd()
|
/test/app_compat/csuite/integration_tests/ |
D | csuite_test_utils.py | 25 import stat 229 path.chmod(path.stat().st_mode | stat.S_IEXEC)
|
/test/vts/compilation_tools/vtsc/ |
D | VtsCompilerMain.cpp | 104 struct stat s; in main() 112 if (stat(argv[opt_count + 1], &s) == 0) { in main()
|
/test/vti/dashboard/src/test/java/com/android/vts/job/ |
D | VtsPerformanceJobServletTest.java | 71 StatSummary stat = new StatSummary(labels[i], regressionMode); in createProfilingReport() local 72 stat.updateStats(values[i]); in createProfilingReport() 73 labelStats.put(labels[i], stat); in createProfilingReport()
|
D | VtsProfilingStatsJobServletTest.java | 58 import org.apache.commons.math3.stat.descriptive.moment.Mean;
|
/test/mlts/benchmark/jni/ |
D | run_tflite.cpp | 438 auto callback = [](const char* entry, const struct stat*, int, struct FTW*) { in cleanup() argument 472 struct stat st; in getCompilationCacheSize() 473 int err = stat(fullPath, &st); in getCompilationCacheSize()
|
/test/vts/utils/native/libprofiling/ |
D | VtsProfilingInterface.cpp | 67 struct stat statbuf; in GetTraceFile()
|
/test/vts/utils/native/trace_processor/ |
D | VtsTraceProcessor.cpp | 232 struct stat path_stat; in CleanupTraces() 233 stat(path.c_str(), &path_stat); in CleanupTraces()
|
/test/vts/drivers/resource/resource_manager/ |
D | VtsResourceManager.cpp | 98 struct stat buffer; in ProcessHidlHandleCommand() 99 if (stat(filepath.c_str(), &buffer) == 0) { in ProcessHidlHandleCommand()
|
/test/vts-testcase/kernel/encryption/ |
D | file_based_encryption_tests.cpp | 137 struct stat stbuf; in GetInodeNumber() 138 if (stat(path.c_str(), &stbuf) != 0) { in GetInodeNumber()
|
/test/vts/compilation_tools/vtsc/test/golden/DRIVER/ |
D | Bar.driver.cpp | 1167 struct stat st; in CallFunction() 1172 if (stat(dir.c_str(), &st) == -1) { in CallFunction() 1187 struct stat st; in CallFunction() 1188 if (!stat(file_name.c_str(), &st)) { in CallFunction()
|
/test/vts/compilation_tools/vtsc/test/golden/PROFILER/ |
D | Bar.profiler.cpp | 1594 struct stat statbuf; in HIDL_INSTRUMENTATION_FUNCTION_android_hardware_tests_bar_V1_0_IBar() 1809 struct stat statbuf; in HIDL_INSTRUMENTATION_FUNCTION_android_hardware_tests_bar_V1_0_IBar()
|