Home
last modified time | relevance | path

Searched refs:max (Results 1 – 25 of 37) sorted by relevance

12

/test/suite_harness/common/util/src/com/android/compatibility/common/util/
DStat.java39 public StatResult(double average, double min, double max, double stddev, int dataCount) { in StatResult() argument
42 mMax = max; in StatResult()
54 double max = data[0]; in getStat() local
57 if (data[i] > max) { in getStat()
58 max = data[i]; in getStat()
72 return new StatResult(average, min, max, stddev, data.length); in getStat()
133 double max = data[0]; in getMax() local
135 if (data[i] > max) { in getMax()
136 max = data[i]; in getMax()
139 return max; in getMax()
/test/vti/dashboard/src/main/java/com/android/vts/util/
DStatSummary.java25 private double max; field in StatSummary
47 double max, in StatSummary() argument
54 this.max = max; in StatSummary()
85 if (value > max) max = value; in updateStats()
131 return max; in getMax()
DHistogram.java42 private Double max = null; field in Histogram
115 return max; in getMax()
134 if (max == null || value > max) in addData()
135 max = value; in addData()
162 json.add(MAX_KEY, new JsonPrimitive(max)); in toJson()
/test/vti/dashboard/src/main/webapp/css/
Dshow_table.css23 transition: max-width 1s;
24 max-width: 150px;
28 max-width: 1000px;
31 max-width: none;
39 max-width: inherit;
68 max-height: 200px;
Dtest_acknowledgments.css90 max-height: 30%;
130 max-height: 250px;
Dcommon.css19 max-width: 1600px;
Ddashboard_main.css92 max-height: 50%;
Dsearch_header.css67 max-height: 75%;
/test/vti/dashboard/src/test/java/com/android/vts/util/
DStatSummaryTest.java65 double max = Double.MIN_VALUE; in testMax() local
70 if (value > max) max = value; in testMax()
73 assertEquals(max, test.getMax(), threshold); in testMax()
/test/framework/harnesses/host_controller/utils/ipc/
Dfile_lock_semaphore.py54 sleep_time = max(sleep_time / 2, MIN_SLEEP_TIME_IN_SECS)
76 max(0, self.sem_value + diff), common.MAX_ADB_FASTBOOT_PROCESS)
116 self._lock_fd[self._name].write("%s" % max(0, (current_value - 1)))
/test/mlts/benchmark/results/
DChart.bundle.min.js10max(e,t),i)}function h(t){var e=t.toString(16).toUpperCase();return e.length<2?"0"+e:e}e.exports={… property
/test/mlts/benchmark/src/com/android/nn/benchmark/evaluators/
DMelCepLogF0.java55 mMaxMelCepDistortion = Math.max(mMaxMelCepDistortion, melCepDistortion); in EvaluateSequenceAccuracy()
61 mMaxLogF0Error = Math.max(mMaxLogF0Error, logF0Error); in EvaluateSequenceAccuracy()
DPhoneErrorRate.java24 mMaxPER = Math.max(mMaxPER, per); in EvaluateSequenceAccuracy()
/test/vti/dashboard/src/main/webapp/WEB-INF/jsp/
Dshow_graph.jsp63 maxVal = g.max;
135 * max: the maximum value to display
137 function drawHistogram(hist, min, max) {
143 if (d <= max && d >= min) result.push([hist.ids[i], d]);
148 var bucketSize = (max - min) / N_BUCKETS;
187 maxValue: max,
/test/framework/harnesses/host_controller/command_processor/
Dcommand_sheet.py170 src_dict, exceed_max = _LoadSrcResults(src_file, args.max,
173 src_dict, exceed_max = _LoadSrcResults(src_file, args.max)
352 del results[max(results)]
Dcommand_config_local.py137 args.id = max(self.schedule_thread) + 1
/test/vti/test_serving/gae/frontend/src/app/menu/lab/
Dlab.component.scss15 max-width: 40px;
/test/vti/dashboard/src/main/java/com/android/vts/entity/
DProfilingPointSummaryEntity.java103 private Long max; field in ProfilingPointSummaryEntity
311 double max = (double) e.getProperty(MAX); in fromEntity() local
317 max, in fromEntity()
/test/vts-testcase/kernel/memory/
DMemorySystemStressTest.py48 self._mem = max(self._mem, 64) # Minimum 64M memory under test
/test/mlts/benchmark/tools/
Dtensor_utils.py240 self.max_absolute_diff = max(self.max_absolute_diff, np.max(diff))
242 self.absolute_range = max(abs(self.min_absolute_diff),
270 'max': np.max(diff),
/test/suite_harness/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/util/
DLinearPartition.java104 float cost = Math.max(table[x][j - 1], table[i][0] - table[x][0]); in buildPartitionTable()
/test/vts/utils/python/controllers/
Dandroid.py72 (addr, port), max(1, timeout_time - time.time()))
/test/vti/test_serving/proto/
DTestLabConfigMessage.proto50 // optional - device index for a host starting from 0 to 13 (max).
/test/vts/runners/host/tcp_server/
Dcallback_server.py116 id = int(max(_functions, key=int)) + 1
/test/suite_harness/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/result/
DConsoleReporter.java162 mNotExecutedTests = Math.max(mTotalTestsInModule - mCurrentTestNum, 0); in testRunEnded()

12