HomeSort by relevance Sort by last modified time
    Searched refs:total_time (Results 26 - 50 of 63) sorted by null

12 3

  /external/lisa/libs/utils/analysis/
residency_analysis.py 40 self.total_time = np.float64(0.0)
91 pr.total_time += runtime
92 if debugg: log.info('adding to total time {}, new total {}'.format(runtime, pr.total_time))
145 dict_ret[cpu_key] = self.residency[pivot_type][int(cpunr)][pivot].total_time
frequency_analysis.py 612 total_time = pd.DataFrame({
616 total_time = total_time.groupby(['frequency']).sum()
644 return ResidencyTime(total_time, active_time)
  /external/python/cpython3/Tools/importbench/
importbench.py 26 total_time = 0
28 while total_time < seconds:
30 total_time += timer.timeit(1)
36 if total_time > seconds:
  /external/bart/bart/sched/
SchedMultiAssert.py 260 total_time = window[1] - window[0]
262 total_time = self._ftrace.get_duration()
264 return busy_time / (total_time * num_cpus) * 100
SchedAssert.py 390 total_time = end - begin
392 total_time = self._ftrace.get_duration()
395 run_time = run_time / total_time
  /external/tensorflow/tensorflow/contrib/cudnn_rnn/python/kernel_tests/
cudnn_rnn_ops_benchmark.py 81 total_time = time.time() - start_time
82 step_time = total_time / benchmark_steps
85 name=desc, iters=benchmark_steps, wall_time=total_time)
  /tools/test/connectivity/acts/framework/acts/test_utils/bt/
BluetoothBaseTest.py 140 total_time = self._get_time_in_milliseconds() - self.start_time
141 self.timer_list.append(total_time)
143 return total_time
  /device/google/marlin/camera/usbcamcore/src/
QCameraMjpegDecode.cpp 244 uint32_t total_time = 0; local
496 total_time += diff;
498 __func__, diff, i+1, total_time, total_time/(i+1));
510 __func__, p_args->back_to_back_count, total_time, total_time/p_args->back_to_back_count);
  /external/autotest/contrib/
compare_suite.py 306 [str(100.0*data[2]*data[3]/suite_job.total_time)
352 suite_job_runtime.total_time = sum(
364 suite_job_runtime.total_time)
367 suite_job_runtime.total_time)
370 suite_job_runtime.total_time)
373 suite_job_runtime.total_time)
  /hardware/qcom/camera/msm8998/usbcamcore/src/
QCameraMjpegDecode.cpp 244 uint32_t total_time = 0; local
496 total_time += diff;
498 __func__, diff, i+1, total_time, total_time/(i+1));
510 __func__, p_args->back_to_back_count, total_time, total_time/p_args->back_to_back_count);
  /external/webrtc/webrtc/base/
profiler.h 96 double total_time() const { return total_time_; } function in class:rtc::ProfilerEvent
profiler.cc 184 << " total=" << FormattedTime(profiler_event.total_time())
  /hardware/invensense/6515/libsensors_iio/software/simple_apps/playback/linux/
main.c 737 double total_time; local
886 total_time = (1.0 * inv_get_tick_count() - start_time) / 1000;
887 if (total_time > 0) {
889 sample_count, total_time , 1.0 * sample_count / total_time);
  /external/tensorflow/tensorflow/contrib/eager/python/examples/rnn_ptb/
rnn_ptb.py 196 total_time = 0
202 total_time += (time.time() - start)
204 time_in_ms = (total_time * 1000) / (batch + 1)
  /packages/experimental/procstatlog/
procstatreport.py 223 total_time = total_cycles = 0
231 total_time += next - last
234 if total_time > 0: cpu_speed[when] = total_cycles / total_time
  /system/extras/simpleperf/scripts/
debug_unwind_reporter.py 113 self.total_time = 0
118 self.total_time += used_time
274 print(' total time: %f ms' % (self.unwinding_times.total_time / 1e6))
278 self.unwinding_times.total_time / 1e3 / self.unwinding_times.count))
  /external/tensorflow/tensorflow/python/grappler/
cost_analyzer.cc 42 CostGraphDef* cost_graph, int64* total_time) {
47 *total_time = costs.execution_time.count();
  /system/core/bootstat/
bootstat.cpp 888 int32_t total_time = 0; local
890 total_time += timing.second;
893 return total_time;
900 int32_t total_time = 0; local
902 total_time += timing.second;
906 boot_event_store->AddBootEventWithValue("boottime.bootloader.total", total_time);
    [all...]
  /external/adhd/cras/src/server/
cras_dsp_pipeline.c 134 int64_t total_time; member in struct:pipeline
814 pipeline->total_time += t;
948 pipeline->total_time);
953 pipeline->total_time / pipeline->total_blocks);
959 dumpf(d, " cpu load: %g%%\n", pipeline->total_time * 1e-9
  /external/owasp/sanitizer/empiricism/
html-containment.js 74 // total_time / nRuns = time_so_far / runIndex
75 // total_time = time_so_far * nRuns / runIndex
77 // eta = total_time - time_so_far
  /external/v8/src/
d8-posix.cc 116 static bool TimeIsOut(const struct timeval& start_time, const int& total_time) {
117 if (total_time == -1) return false;
123 if (seconds * 1000 > total_time) return true;
127 if (seconds * 1000000 + useconds > total_time * 1000) {
  /external/autotest/client/bin/
job.py     [all...]
  /frameworks/support/leanback/src/main/java/androidx/leanback/widget/
PlaybackControlsPresenter.java 72 mTotalTime = (TextView) rootView.findViewById(R.id.total_time);
  /system/core/liblog/tests/
liblog_test.cpp 1876 useconds_t total_time = 0; local
    [all...]
  /external/autotest/client/site_tests/power_LoadTest/
power_LoadTest.py 498 total_time = seconds + self._wait_time
501 while elapsed_time < total_time:

Completed in 1755 milliseconds

12 3