Home
last modified time | relevance | path

Searched refs:total_time (Results 1 – 14 of 14) sorted by relevance

/external/eigen/bench/spbench/
Dspbenchsolver.h217 double total_time; in call_solver() local
250 total_time = solve_time + compute_time; in call_solver()
251 statbuf << " <TOTAL> " << total_time << "</TOTAL>\n"; in call_solver()
252 std::cout<< "TOTAL TIME : " << total_time <<std::endl; in call_solver()
270 if(!best_time_val || (best_time_val > total_time)) in call_solver()
272 best_time_val = total_time; in call_solver()
/external/linux-tools-perf/src/tools/perf/
Dbuiltin-timechart.c81 u64 total_time; member
94 u64 total_time; member
257 c->total_time += (end-start); in pid_put_sample()
258 p->total_time += (end-start); in pid_put_sample()
808 if (c->total_time > 5000000000) /* 5 seconds */ in draw_process_bars()
809 sprintf(comm, "%s:%i (%2.2fs)", c->comm, p->pid, c->total_time / 1000000000.0); in draw_process_bars()
811 sprintf(comm, "%s:%i (%3.1fms)", c->comm, p->pid, c->total_time / 1000000.0); in draw_process_bars()
913 if (p->total_time >= threshold && !power_only) in determine_display_tasks()
924 if (c->total_time >= threshold && !power_only) { in determine_display_tasks()
Dbuiltin-kvm.c106 u64 total_time; member
661 kvm->total_time += get_event_time(event, vcpu); in update_total_count()
770 pr_info("%8.2f%% ", (double)etime / kvm->total_time * 100); in print_result()
779 kvm->total_count, kvm->total_time / 1e3); in print_result()
1025 kvm->total_time = 0; in perf_kvm__handle_timerfd()
/external/v8/src/
Dd8-posix.cc123 static bool TimeIsOut(const struct timeval& start_time, const int& total_time) { in TimeIsOut() argument
124 if (total_time == -1) return false; in TimeIsOut()
130 if (seconds * 1000 > total_time) return true; in TimeIsOut()
134 if (seconds * 1000000 + useconds > total_time * 1000) { in TimeIsOut()
/external/ceres-solver/internal/ceres/
Dlinear_solver.h325 ScopedExecutionTimer total_time("LinearSolver::Solve", &execution_summary_); in Solve()
/external/lldb/examples/python/
Dperformance.py306 with Timer() as total_time:
323 print('Total time = %.03f sec.' % total_time.interval)
/external/openssh/
Dclientloop.c1471 double start_time, total_time; in client_loop() local
1732 total_time = get_current_time() - start_time; in client_loop()
1735 (unsigned long long)obytes, (unsigned long long)ibytes, total_time); in client_loop()
1736 if (total_time > 0) in client_loop()
1738 obytes / total_time, ibytes / total_time); in client_loop()
/external/chromium-trace/trace-viewer/third_party/Paste/paste/
Dhttpserver.py771 total_time = 0
789 total_time += now-time_started
813 ave_time = float(total_time) / working_workers
Dfixture.py472 def _make_response(self, resp, total_time): argument
475 total_time)
508 total_time): argument
517 self.time = total_time
/external/ceres-solver/docs/source/
Dtutorial.rst136 … cost cost_change |gradient| |step| tr_ratio tr_radius ls_iter iter_time total_time
378 … cost cost_change |gradient| |step| tr_ratio tr_radius ls_iter iter_time total_time
508 … cost cost_change |gradient| |step| tr_ratio tr_radius ls_iter iter_time total_time
Dfaqs.rst172 … cost cost_change |gradient| |step| tr_ratio tr_radius ls_iter iter_time total_time
Dbuilding.rst166 … cost cost_change |gradient| |step| tr_ratio tr_radius ls_iter iter_time total_time
Dsolving.rst1400 … cost cost_change |gradient| |step| tr_ratio tr_radius ls_iter iter_time total_time
1422 #. ``total_time`` is the the total time taken by the minimizer.
/external/valgrind/perf/
Dtinycc.c21749 double total_time; in main2() local
21750 total_time = (double)(getclock_us() - start_time) / 1000000.0; in main2()
21751 if (total_time < 0.001) in main2()
21752 total_time = 0.001; in main2()
21757 total_time, (int)(total_lines / total_time), in main2()
21758 total_bytes / total_time / 1000000.0); in main2()