Searched refs:total_time (Results 1 - 10 of 10) sorted by relevance

/external/srec/srec/crec/
H A Dcomp_stats.c63 c.total_time = 0;
81 pfprintf(fp, "Total Time %5.2f Seconds\n", cs->total_time);
83 print_cs_clock(&cs->front_end, cs->total_time, fp, "Front end", "Frames");
84 print_cs_clock(&cs->overall_search, cs->total_time, fp, "Total Search", "Frames");
85 print_cs_clock(&cs->models, cs->total_time, fp, " Models", "Models");
86 print_cs_clock(&cs->internal_hmm, cs->total_time, fp, " Internal HMM", "HMMs");
87 print_cs_clock(&cs->fsm_to_hmm, cs->total_time, fp, " FSM to HMM", "FSM_Nodes");
88 print_cs_clock(&cs->prune, cs->total_time, fp, " Prune", "HMM States");
89 print_cs_clock(&cs->hmm_to_fsm, cs->total_time, fp, " HMM to FSM", "HMMS");
90 print_cs_clock(&cs->epsilon, cs->total_time, f
[all...]
H A Dsrec.c1842 comp_stats->total_time += (float)(end_frame / 50.0f);
/external/srec/srec/include/
H A Dcomp_stats.h67 CS_ACC_TIME total_time; member in struct:CS_CLOCK_t
89 float total_time; /*in seconds*/ member in struct:COMP_STATS_t
/external/eigen/bench/spbench/
H A Dspbenchsolver.h72 double total_time; member in struct:Stats
155 stat.total_time = stat.solve_time + stat.compute_time;
218 best_time_val = stat[solver_id].total_time;
221 else if (stat[solver_id].total_time < best_time_val)
223 best_time_val = stat[solver_id].total_time;
230 cout<< "TOTAL TIME : " << stat[solver_id].total_time<< " \n";
260 total << markup << stat[i].total_time;
/external/linux-tools-perf/
H A Dbuiltin-timechart.c87 u64 total_time; member in struct:per_pid
100 u64 total_time; member in struct:per_pidcomm
267 c->total_time += (end-start);
268 p->total_time += (end-start);
818 if (c->total_time > 5000000000) /* 5 seconds */
819 sprintf(comm, "%s:%i (%2.2fs)", c->comm, p->pid, c->total_time / 1000000000.0);
821 sprintf(comm, "%s:%i (%3.1fms)", c->comm, p->pid, c->total_time / 1000000.0);
925 if (p->total_time >= threshold && !power_only)
936 if (c->total_time >= threshold && !power_only) {
/external/v8/src/
H A Dd8-posix.cc142 static bool TimeIsOut(const struct timeval& start_time, const int& total_time) { argument
143 if (total_time == -1) return false;
149 if (seconds * 1000 > total_time) return true;
153 if (seconds * 1000000 + useconds > total_time * 1000) {
/external/openssh/
H A Dclientloop.c1383 double start_time, total_time; local
1644 total_time = get_current_time() - start_time;
1648 (unsigned long long)obytes, (unsigned long long)ibytes, total_time);
1649 if (total_time > 0)
1651 obytes / total_time, ibytes / total_time);
/external/chromium/base/
H A Dmessage_loop_unittest.cc336 TimeDelta total_time = Time::Now() - start_time;
337 EXPECT_GT(5000, total_time.InMilliseconds());
400 TimeDelta total_time = Time::Now() - start_time; local
401 EXPECT_GT(5000, total_time.InMilliseconds());
/external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
H A Dtest_runner.py563 of each thread with 'name', 'num_tests', 'total_time' properties
583 'total_time': thread.get_total_time()})
902 def _print_timing_statistics(self, total_time, thread_timings,
908 total_time: total elapsed time (in seconds) for the test run
915 self._printer.print_timing(" %6.2f total testing time" % total_time)
921 (t['name'], t['num_tests'], t['total_time']))
922 cuml_time += t['total_time']
/external/valgrind/main/perf/
H A Dtinycc.c21751 double total_time;
21752 total_time = (double)(getclock_us() - start_time) / 1000000.0;
21753 if (total_time < 0.001)
21754 total_time = 0.001;
21759 total_time, (int)(total_lines / total_time),
21760 total_bytes / total_time / 1000000.0);
21749 double total_time; local

Completed in 1120 milliseconds