HomeSort by relevance Sort by last modified time
    Searched full:total_duration (Results 1 - 25 of 53) sorted by null

1 2 3

  /external/v8/tools/testrunner/network/
distro.py 33 self.total_duration = 0.0
37 self.total_duration += suite.total_duration
61 # Convert |shells| to list and sort it, shortest total_duration first.
63 shells.sort(cmp=lambda x, y: cmp(x.total_duration, y.total_duration))
84 if (shell.total_duration < peer.needed_work and
87 shell.total_duration <= peers[index + 1].needed_work):
  /frameworks/base/cmds/statsd/benchmark/
stats_write_benchmark.cpp 26 int64_t total_duration = 100; local
32 boot_end_time, total_duration, bootloader_duration, time_since_last_boot);
33 total_duration++;
  /frameworks/base/tests/JankBench/app/src/main/java/com/android/benchmark/results/
GlobalResultsStore.java 73 " total_duration REAL," +
110 cv.put("total_duration",
111 result.getMetricAtIndex(frameIdx, FrameMetrics.TOTAL_DURATION));
147 "total_duration",
176 cursor.getColumnIndexOrThrow("total_duration"));
195 System.out.println(""+ resultList.get(0).getMetricAtIndex(0, FrameMetrics.TOTAL_DURATION));
217 "total_duration",
251 cursor.getColumnIndexOrThrow("total_duration"));
253 cursor.getColumnIndexOrThrow("total_duration"));
320 result.getPercentile(FrameMetrics.TOTAL_DURATION, 95)))
    [all...]
UiBenchmarkResult.java 53 FrameMetrics.TOTAL_DURATION,
130 double totalDuration = getMetricAtIndex(i, FrameMetrics.TOTAL_DURATION);
148 double total95th = mStoredStatistics[getMetricPosition(FrameMetrics.TOTAL_DURATION)]
165 mStoredStatistics[getMetricPosition(FrameMetrics.TOTAL_DURATION)];
181 int totalDurationPos = getMetricPosition(FrameMetrics.TOTAL_DURATION);
  /frameworks/support/compat/src/main/java/androidx/core/app/
FrameMetricsAggregator.java 58 * The index in the metrics array where the data for {@link #TOTAL_DURATION}
118 public static final int TOTAL_DURATION = 1 << TOTAL_INDEX;
183 TOTAL_DURATION,
197 * Constructs a FrameMetricsAggregator object that will track {@link #TOTAL_DURATION}
202 this(TOTAL_DURATION);
208 * such as {@link #TOTAL_DURATION} to specify all metrics that should be tracked. For example,
209 * {@code TOTAL_DURATION | DRAW_DURATION} will track both the total and draw durations
240 * SparseIntArray object, e.g., data for {@code TOTAL_DURATION} is stored in
256 * SparseIntArray object, e.g., data for {@code TOTAL_DURATION} is stored in
270 * SparseIntArray object, e.g., data for {@code TOTAL_DURATION} is stored i
    [all...]
  /frameworks/base/tests/JankBench/app/src/main/java/com/android/benchmark/app/
UiResultsFragment.java 80 double currentAvgFrameDuration = mResults.get(i).getAverage(FrameMetrics.TOTAL_DURATION);
84 double current99FrameDuration = mResults.get(i).getPercentile(FrameMetrics.TOTAL_DURATION, 99);
88 double current95FrameDuration = mResults.get(i).getPercentile(FrameMetrics.TOTAL_DURATION, 95);
92 double current90FrameDuration = mResults.get(i).getPercentile(FrameMetrics.TOTAL_DURATION, 90);
96 double longestFrame = mResults.get(i).getMaximum(FrameMetrics.TOTAL_DURATION);
102 double shortestFrame = mResults.get(i).getMinimum(FrameMetrics.TOTAL_DURATION);
  /frameworks/base/tests/JankBench/scripts/
itr_collect.py 15 QUERY_BAD_FRAME = ("select run_id, name, total_duration from ui_results "
16 "where total_duration >=12 order by run_id, name")
35 total_duration = row[2]
44 scoremap[run_id][name].durations.append(float(total_duration))
collect.py 22 QUERY_BAD_FRAME = ("select run_id, name, iteration, total_duration from ui_results "
23 "where total_duration >= 16 order by run_id, name, iteration")
58 total_duration = row[3]
69 scoremap[run_id][name][iteration].durations.append(float(total_duration))
  /external/tensorflow/tensorflow/core/kernels/
quantized_add_op_test.cc 162 int64 total_duration = 0; local
168 total_duration += end_time - start_time;
170 const int64 one_run_duration = total_duration / iterations;
175 (iterations * num_ops) / static_cast<double>(total_duration);
182 << ", total_duration=" << total_duration; local
quantized_mul_op_test.cc 162 int64 total_duration = 0; local
168 total_duration += end_time - start_time;
170 const int64 one_run_duration = total_duration / iterations;
175 (iterations * num_ops) / static_cast<double>(total_duration);
182 << ", total_duration=" << total_duration; local
quantized_resize_bilinear_op_test.cc 204 int64 total_duration = 0; local
213 total_duration += end_time - start_time;
215 const int64 one_run_duration = total_duration / iterations;
220 (iterations * num_ops) / static_cast<double>(total_duration);
228 << ", total_duration=" << total_duration; local
  /external/lisa/tools/scripts/
compare_janbench.py 53 columns = ['_id', 'name', 'run_id', 'iteration', 'total_duration', 'jank_frame']
68 stats_df = res_df['total_duration']
  /external/v8/tools/testrunner/objects/
peer.py 59 shell.total_duration -= t.duration
68 shell.total_duration -= test.duration
  /system/update_engine/
metrics_reporter_android.cc 122 base::TimeDelta total_duration,
147 total_duration.InMinutes());
metrics_reporter_android.h 69 base::TimeDelta total_duration,
metrics_reporter_stub.h 69 base::TimeDelta total_duration,
mock_metrics_reporter.h 66 base::TimeDelta total_duration,
metrics_reporter_omaha.h 133 base::TimeDelta total_duration,
metrics_reporter_omaha_unittest.cc 260 TimeDelta total_duration = TimeDelta::FromMinutes(30); local
335 total_duration,
  /tools/loganalysis/src/com/android/loganalysis/item/
MonkeyLogItem.java 59 public static final String TOTAL_DURATION = "TOTAL_TIME";
77 IGNORE_SECURITY_EXCEPTIONS, TOTAL_DURATION, START_UPTIME_DURATION, STOP_UPTIME_DURATION,
216 return (Long) getAttribute(TOTAL_DURATION);
223 setAttribute(TOTAL_DURATION, time);
SmartMonkeyLogItem.java 50 public static final String TOTAL_DURATION = "TOTAL_TIME";
72 TOTAL_DURATION, START_UPTIME_DURATION, STOP_UPTIME_DURATION, APPLICATIONS,
203 return (Long) getAttribute(TOTAL_DURATION);
214 setAttribute(TOTAL_DURATION, time);
  /frameworks/base/core/java/android/view/
FrameMetrics.java 119 public static final int TOTAL_DURATION = 8;
172 TOTAL_DURATION,
248 // TOTAL_DURATION
  /external/autotest/client/cros/power/
power_dashboard.py 152 total_duration = self._logger.times[-1] - self._logger.times[0]
154 1.0 * total_duration / (power_dict['sample_count'] - 1)
  /external/v8/tools/testrunner/local/
testsuite.py 90 self.total_duration = None # float, assigned on demand
309 self.total_duration = 0.0
311 self.total_duration += t.duration
312 return self.total_duration
  /frameworks/support/compat/src/androidTest/java/androidx/core/app/
FrameMetricsAggregatorTest.java 69 // Check that getMetrics() returns results only for TOTAL_DURATION

Completed in 4092 milliseconds

1 2 3