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

  /external/srec/srec/crec/
comp_stats.c 63 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, fp, " Epsilon", "FSM_Nodes")
    [all...]
srec.c     [all...]
  /sdk/emulator/qtools/
profile_pid.cpp 67 uint64_t total_time = 0; local
69 total_time += processes[ii].cpu_time;
77 double per = 100.0 * pstate->cpu_time / total_time;
78 double sum_per = 100.0 * sum_time / total_time;
  /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...]
  /system/wlan/ti/sta_dk_4_0_4_32/pform/linux/src/
tiwlan_profile.c 309 unsigned total_time, drv_cpu_usage = 0, bus_cpu_usage = 0; local
324 total_time = drv->cpu_usage_estimator_stop_time - drv->cpu_usage_estimator_start_time;
326 total_time /= 100;
328 if ((int)total_time > 0)
330 drv_cpu_usage = drv->total_us_of_cpu_time / total_time;
331 bus_cpu_usage = drv->total_us_of_bus_access_cpu_time / total_time;
333 printk ("\nTotal Test Run Time: %u (usec)", total_time);
  /system/extras/tests/sdcard/
testcase.cpp 149 char total_time[80]; local
151 snprintf(total_time, sizeof(total_time), "%s_total", mName);
152 mTestTimer = new StopWatch(total_time, 1);
  /external/srec/srec/include/
comp_stats.h 67 CS_ACC_TIME total_time; member in struct:CS_CLOCK_t
89 float total_time; /*in seconds*/ member in struct:COMP_STATS_t
  /external/v8/src/
d8-posix.cc 142 static bool TimeIsOut(const struct timeval& start_time, const int& total_time) {
143 if (total_time == -1) return false;
149 if (seconds * 1000 > total_time) return true;
153 if (seconds * 1000000 + useconds > total_time * 1000) {
  /packages/experimental/procstatlog/
procstatreport.py 223 total_time = total_cycles = 0
231 total_time += next - last
234 if total_time > 0: cpu_speed[when] = total_cycles / total_time
  /external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/
run_chromium_webkit_tests.py 548 of each thread with 'name', 'num_tests', 'total_time' properties
575 'total_time': thread.get_total_time()})
    [all...]

Completed in 330 milliseconds