Searched defs:total_time (Results 1 - 7 of 7) sorted by relevance

/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/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/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/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/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/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 426 milliseconds