Searched refs:total_time (Results 1 – 8 of 8) sorted by relevance
/external/srec/srec/crec/ |
D | comp_stats.c | 63 c.total_time = 0; in init_comp_stats() 81 pfprintf(fp, "Total Time %5.2f Seconds\n", cs->total_time); in dump_comp_stats() 83 print_cs_clock(&cs->front_end, cs->total_time, fp, "Front end", "Frames"); in dump_comp_stats() 84 print_cs_clock(&cs->overall_search, cs->total_time, fp, "Total Search", "Frames"); in dump_comp_stats() 85 print_cs_clock(&cs->models, cs->total_time, fp, " Models", "Models"); in dump_comp_stats() 86 print_cs_clock(&cs->internal_hmm, cs->total_time, fp, " Internal HMM", "HMMs"); in dump_comp_stats() 87 print_cs_clock(&cs->fsm_to_hmm, cs->total_time, fp, " FSM to HMM", "FSM_Nodes"); in dump_comp_stats() 88 print_cs_clock(&cs->prune, cs->total_time, fp, " Prune", "HMM States"); in dump_comp_stats() 89 print_cs_clock(&cs->hmm_to_fsm, cs->total_time, fp, " HMM to FSM", "HMMS"); in dump_comp_stats() 90 print_cs_clock(&cs->epsilon, cs->total_time, fp, " Epsilon", "FSM_Nodes"); in dump_comp_stats() [all …]
|
D | srec.c | 1842 comp_stats->total_time += (float)(end_frame / 50.0f); in srec_no_more_frames()
|
/external/srec/srec/include/ |
D | comp_stats.h | 67 CS_ACC_TIME total_time; member 89 float total_time; /*in seconds*/ member
|
/external/v8/src/ |
D | d8-posix.cc | 142 static bool TimeIsOut(const struct timeval& start_time, const int& total_time) { in TimeIsOut() argument 143 if (total_time == -1) return false; in TimeIsOut() 149 if (seconds * 1000 > total_time) return true; in TimeIsOut() 153 if (seconds * 1000000 + useconds > total_time * 1000) { in TimeIsOut()
|
/external/chromium/base/ |
D | message_loop_unittest.cc | 336 TimeDelta total_time = Time::Now() - start_time; in RunTest_PostDelayedTask_SharedTimer() local 337 EXPECT_GT(5000, total_time.InMilliseconds()); in RunTest_PostDelayedTask_SharedTimer() 400 TimeDelta total_time = Time::Now() - start_time; in RunTest_PostDelayedTask_SharedTimer_SubPump() local 401 EXPECT_GT(5000, total_time.InMilliseconds()); in RunTest_PostDelayedTask_SharedTimer_SubPump()
|
D | process_util_mac.mm | 410 /* Set total_time. */
|
/external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/ |
D | test_runner.py | 902 def _print_timing_statistics(self, total_time, thread_timings, argument 915 self._printer.print_timing(" %6.2f total testing time" % total_time)
|
/external/valgrind/main/perf/ |
D | tinycc.c | 21748 double total_time; in main2() local 21749 total_time = (double)(getclock_us() - start_time) / 1000000.0; in main2() 21750 if (total_time < 0.001) in main2() 21751 total_time = 0.001; in main2() 21756 total_time, (int)(total_lines / total_time), in main2() 21757 total_bytes / total_time / 1000000.0); in main2()
|