Searched refs:min_time (Results 1 – 12 of 12) sorted by relevance
/external/python/cpython2/Tools/pybench/ |
D | pybench.py | 373 min_time = min(self.times) 383 return min_time, avg_time, total_time, operation_avg, min_overhead 580 min_time = min(self.roundtimes) 584 return (min_time, avg_time, max_time) 613 (min_time, 618 total_min_time = total_min_time + min_time 622 min_time * MILLI_SECONDS, 665 (min_time, 670 total_min_time = total_min_time + min_time 693 min_diff = ((min_time * self.warp) / [all …]
|
/external/fio/tools/plot/ |
D | fio2gnuplot | 151 def compute_temp_file(fio_data_file,disk_perf,gnuplot_output_dir, min_time, max_time): argument 155 if verbose: print "Processing data file 1/2 with %s<time<%s" % (min_time,end_time) 207 if (min_time == 0): 208 min_time==0.5 211 …if ((float(time)>(float(min_time)*1000)) and ((int(time) < (int(max_time)*1000)) or max_time==-1)): 393 min_time=0 441 min_time=arg 505 blk_size=compute_temp_file(fio_data_file,disk_perf,gnuplot_output_dir,min_time,max_time)
|
D | fio2gnuplot.manpage | 6 [-G type] [-m min_time] [-M max_time] 91 -m time or --min_time time
|
/external/libcxx/utils/google-benchmark/src/ |
D | benchmark.cc | 328 const double min_time = in RunBenchmark() local 329 !IsZero(b.min_time) ? b.min_time : FLAGS_benchmark_min_time; in RunBenchmark() 333 (seconds >= min_time) || (results.real_time_used >= 5 * min_time)) { in RunBenchmark() 344 double multiplier = min_time * 1.4 / std::max(seconds, 1e-9); in RunBenchmark() 350 bool is_significant = (seconds / min_time) > 0.1; in RunBenchmark()
|
D | benchmark_api_internal.h | 29 double min_time; member
|
D | benchmark_register.cc | 145 instance.min_time = family->min_time_; in FindBenchmarks()
|
/external/google-benchmark/src/ |
D | benchmark.cc | 339 const double min_time = in RunBenchmark() local 340 !IsZero(b.min_time) ? b.min_time : FLAGS_benchmark_min_time; in RunBenchmark() 348 || seconds >= min_time // the elapsed time is large enough in RunBenchmark() 352 || ((results.real_time_used >= 5 * min_time) && !b.use_manual_time); in RunBenchmark() 365 double multiplier = min_time * 1.4 / std::max(seconds, 1e-9); in RunBenchmark() 371 bool is_significant = (seconds / min_time) > 0.1; in RunBenchmark()
|
D | benchmark_api_internal.h | 30 double min_time; member
|
D | benchmark_register.cc | 155 instance.min_time = family->min_time_; in FindBenchmarks()
|
/external/autotest/client/site_tests/accessibility_ChromeVoxSound/ |
D | accessibility_ChromeVoxSound.py | 24 def _detect_audio(self, name, min_time): argument 63 if audio_length < min_time:
|
/external/bart/bart/sched/ |
D | SchedAssert.py | 594 min_time = min(result) 595 if math.isinf(min_time): 597 index = result.index(min_time)
|
/external/icu/icu4c/source/tools/tzcode/ |
D | zic.c | 866 static const zic_t min_time = (zic_t) -1 << (TIME_T_BITS_IN_FILE - 1); variable 1244 z.z_untiltime > min_time && in inzsub() 1246 zones[nzones - 1].z_untiltime > min_time && in inzsub() 1326 if (dayoff < min_time / SECSPERDAY) { in inleap() 1626 while (fromi < timecnt && attypes[fromi].at < min_time) in writezone() 2360 usestart = i > 0 && (zp - 1)->z_untiltime > min_time; in outzone() 2362 if (useuntil && zp->z_untiltime <= min_time) in outzone() 2468 addtt(min_time, type); in outzone() 2521 if (jtime == min_time || in outzone() 2681 if (starttime <= min_time || in addtt() [all …]
|