Home
last modified time | relevance | path

Searched refs:totaltime (Results 1 – 5 of 5) sorted by relevance

/external/ltp/utils/ffsb-6.0-rc2/
Dmain.c68 double totaltime = 0.0f, usertime = 0.0f, systime = 0.0f; in main() local
182 totaltime = tvtodouble(&difftime); in main()
184 printf("Benchmark took %.2lf sec\n", totaltime); in main()
202 print_results(&tg_results, totaltime); in main()
218 print_results(&total_results, totaltime); in main()
247 printf("%.1lf%% User Time\n", 100 * usertime / totaltime); in main()
248 printf("%.1lf%% System Time\n", 100 * systime / totaltime); in main()
250 totaltime); in main()
/external/eigen/bench/spbench/
Dsp_solver.cpp27 BenchTimer timer,totaltime; in main() local
40 totaltime.start(); in main()
120 totaltime.stop(); in main()
121 cout << "Total time " << totaltime.value() << "\n"; in main()
/external/python/cpython3/Lib/
DcProfile.py64 ct = entry.totaltime # cumtime column of pstats
80 ct = subentry.totaltime
/external/python/cpython2/Lib/
DcProfile.py104 ct = entry.totaltime # cumtime column of pstats
120 ct = subentry.totaltime
/external/cldr/tools/java/org/unicode/cldr/icu/
DCompareIcuOutput.java58 long totaltime = System.currentTimeMillis(); in main() local
61 System.out.println("Total time taken: " + (System.currentTimeMillis() - totaltime)); in main()