HomeSort by relevance Sort by last modified time
    Searched refs:total_time (Results 1 - 25 of 37) sorted by null

1 2

  /external/curl/docs/examples/
fileupload.c 36 curl_off_t speed_upload, total_time; local
76 curl_easy_getinfo(curl, CURLINFO_TOTAL_TIME_T, &total_time);
81 (total_time / 1000000), (long)(total_time % 1000000));
  /external/webrtc/webrtc/base/
profiler_unittest.cc 47 EXPECT_NEAR(kWaitSec * 2, event->total_time(), kTolerance * 2);
48 EXPECT_DOUBLE_EQ(event->mean(), event->total_time() / event->event_count());
98 EXPECT_NEAR(kWaitSec * 2, event1->total_time(), kTolerance * 2);
100 event1->total_time() / event1->event_count());
profiler.h 96 double total_time() const { return total_time_; } function in class:rtc::ProfilerEvent
  /cts/tools/dasm/src/java_cup/
Main.java 674 long total_time = final_time - start_time; local
679 + timestr(final_time-start_time, total_time));
681 + timestr(prelim_end-start_time, total_time));
683 + timestr(parse_end-prelim_end, total_time) );
686 + timestr(check_end-parse_end, total_time));
689 + timestr(build_end-check_end, total_time));
692 + timestr(nullability_end-check_end, total_time));
695 + timestr(first_end-nullability_end, total_time));
698 + timestr(machine_end-first_end, total_time));
701 + timestr(table_end-machine_end, total_time));
    [all...]
  /external/autotest/client/profilers/powertop/src/
cpufreqstats.c 97 uint64_t total_time = 0; local
152 total_time += delta[ret].count;
159 if (!total_time)
169 sprintf(cpufreqstrings[ret+1], "%6s %5.1f%%\n", HzToHuman(delta[ret].frequency), delta[ret].count * 100.0 / total_time);
170 if (delta[ret].count > total_time/2)
  /external/libevent/test/
bench_httpclient.c 57 struct timeval total_time = {0,0}; variable in typeref:struct:timeval
93 evutil_timeradd(&diff, &total_time, &total_time);
207 usec = total_time.tv_sec * (long long)1000000 + total_time.tv_usec;
  /external/autotest/client/site_tests/power_HotCPUSuspend/
power_HotCPUSuspend.py 42 total_time = sum(diff_times[field] for field in PROC_STAT_CPU_FIELDS)
44 return float(total_time - idle_time) / total_time
  /external/tensorflow/tensorflow/examples/android/jni/object_tracking/
time_log.h 120 const float total_time = local
124 total_time, average_running_total);
  /art/runtime/base/
timing_logger.cc 182 DCHECK_EQ(ret.data_[open_idx].total_time, 0U);
183 ret.data_[open_idx].total_time += time;
218 uint64_t total_time = timing_data.GetTotalTime(i); local
222 total_time -= total_time % mod_fraction;
229 if (exclusive_time != total_time) {
230 os << "/" << FormatDuration(total_time, tu, kFractionalDigits);
timing_logger.h 136 return data_[idx].total_time;
146 CalculatedDataPoint() : total_time(0), exclusive_time(0) {}
147 uint64_t total_time; member in struct:art::TimingLogger::TimingData::CalculatedDataPoint
  /external/autotest/client/site_tests/graphics_SanAngeles/src/
app-linux.c 226 double total_time = 0.0; local
253 total_time += (timeAfter.tv_sec - timeNow.tv_sec) +
261 fprintf(stdout, "frame_rate = %.1f\n", num_frames / total_time);
  /external/ltp/testcases/kernel/io/disktest/
timer.c 76 time_t total_time = 0; local
138 total_time = env->global_stats.rtime
146 ((double)(total_time) / (double)(tmp_io_count)));
  /external/mesa3d/src/gallium/auxiliary/hud/
hud_cpu.c 55 get_cpu_stats(unsigned cpu_index, uint64_t *busy_time, uint64_t *total_time)
75 *total_time = filetime_to_scalar(ftNow) - filetime_to_scalar(ftCreation);
81 *total_time *= sysInfo.dwNumberOfProcessors;
92 get_cpu_stats(unsigned cpu_index, uint64_t *busy_time, uint64_t *total_time)
125 *total_time = *busy_time;
129 *total_time += v[i];
  /external/autotest/server/hosts/
moblab_host.py 301 total_time = 0
303 total_time < DUT_VERIFY_TIMEOUT):
304 total_time = total_time + DUT_VERIFY_SLEEP_SECS
  /external/tensorflow/tensorflow/python/grappler/
cost_analyzer.h 58 int64* total_time);
  /external/eigen/bench/spbench/
spbenchsolver.h 217 double total_time; local
250 total_time = solve_time + compute_time;
251 statbuf << " <TOTAL> " << total_time << "</TOTAL>\n"; local
252 std::cout<< "TOTAL TIME : " << total_time <<std::endl;
270 if(!best_time_val || (best_time_val > total_time))
272 best_time_val = total_time;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/
pybench.py 374 total_time = reduce(operator.add, self.times, 0.0)
375 avg_time = total_time / float(runs)
376 operation_avg = total_time / float(runs
383 return min_time, avg_time, total_time, operation_avg, min_overhead
581 total_time = reduce(operator.add, self.roundtimes, 0.0)
582 avg_time = total_time / float(runs)
615 total_time,
667 total_time,
    [all...]
  /external/autotest/server/site_tests/network_WiFi_AssocConfigPerformance/
network_WiFi_AssocConfigPerformance.py 88 total_time: total time reported, how long to connect on resume
111 total_time = time.time() - start_time
112 timings = {'connect_time': assoc_result.time, 'total_time': total_time}
161 total_times = [perf['total_time'] for perf in suspend_resume]
  /external/python/cpython2/Tools/pybench/
pybench.py 374 total_time = reduce(operator.add, self.times, 0.0)
375 avg_time = total_time / float(runs)
376 operation_avg = total_time / float(runs
383 return min_time, avg_time, total_time, operation_avg, min_overhead
581 total_time = reduce(operator.add, self.roundtimes, 0.0)
582 avg_time = total_time / float(runs)
615 total_time,
667 total_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/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)
  /external/v8/src/
counters.cc 323 entry.SetTotal(total_time, total_call_count);
327 Entry("Total", total_time, total_call_count).Print(os);
337 total_time += counter->time();
368 V8_NOINLINE void SetTotal(base::TimeDelta total_time,
370 if (total_time.InMicroseconds() == 0) {
373 time_percent_ = 100.0 * time_ / total_time.InMicroseconds();
387 base::TimeDelta total_time; member in class:v8::internal::RuntimeCallStatEntries
  /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)
  /external/tensorflow/tensorflow/contrib/eager/python/examples/rnn_ptb/
rnn_ptb.py 202 total_time = 0
208 total_time += (time.time() - start)
210 time_in_ms = (total_time * 1000) / (batch + 1)

Completed in 2115 milliseconds

1 2