Home
last modified time | relevance | path

Searched refs:round (Results 1 – 15 of 15) sorted by relevance

/tools/power/cpupower/bench/
Dsystem.c130 unsigned int round; in prepare_user() local
132 for (round = 0; round < config->rounds; round++) { in prepare_user()
134 (config->sleep + config->sleep_step * round); in prepare_user()
136 (config->load + config->load_step * round) + in prepare_user()
137 (config->load + config->load_step * round * 4); in prepare_user()
DREADME-BENCH69 100% CPU load (load) | 0 % CPU load (sleep) | round
76 In round 1, ondemand should have rather static 50% load and probably
79 In round 2, if the ondemand sampling times exactly match the load/sleep
/tools/cgroup/
Diocost_coef_gen.py158 rseqiops = round(run_fio(testfile, args.duration, 'read',
161 rrandiops = round(run_fio(testfile, args.duration, 'randread',
167 wseqiops = round(run_fio(testfile, args.duration, 'write',
170 wrandiops = round(run_fio(testfile, args.duration, 'randwrite',
/tools/virtio/virtio-trace/
Dtrace-agent.c73 unsigned long value, round; in parse_size() local
97 round = value & (PAGE_SIZE - 1); in parse_size()
98 value = value - round; in parse_size()
/tools/perf/util/
Dtime-utils.c209 ptime->start = start + round(start_pcnt * total); in set_percent_time()
210 ptime->end = start + round(end_pcnt * total); in set_percent_time()
/tools/perf/scripts/python/
Dtask-analyzer.py429 time_sum = round(sum(runtimes), 3)
430 time_mean = round(_mean(runtimes), 3)
431 time_median = round(_median(runtimes), 3)
Dcompaction-times.py52 return "%dns" % ns if opt_ns else "%dus" % (round(ns, -3) / 1000)
Dexported-sql-viewer.py2089 return int(round((x - self.subrange.x.lo) * self.scale.x, self.pdp.x))
2092 return int(round((y - self.subrange.y.lo) * self.scale.y, self.pdp.y))
2095 return round((round(px, 0) / self.scale.x), self.dp.x) + self.subrange.x.lo
2098 return round((round(py, 0) / self.scale.y), self.dp.y) + self.subrange.y.lo
/tools/perf/Documentation/
Dperf-script.txt348 --show-round-events
349 Display finished round events i.e. events of type PERF_RECORD_FINISHED_ROUND.
Dperf-config.txt676 round events.
Dperf-intel-pt.txt1855 That means finished-round ordering doesn't work. An auxtrace buffer
/tools/kvm/kvm_stat/
Dkvm_stat1306 cur = int(round(values.delta / sleeptime)) if values.delta else 0
1327 tavg = int(round(tcur / sleeptime)) if tcur > 0 else ''
/tools/perf/
Ddesign.txt173 particular counter allowing one to take the round-robin scheduling effect
Dbuiltin-script.c3650 struct perf_record_stat_round *round = &event->stat_round; in process_stat_round_event() local
3655 process_stat(counter, round->time); in process_stat_round_event()
3658 process_stat_interval(round->time); in process_stat_round_event()
/tools/power/pm-graph/
Dsleepgraph.py1841 tTry = '%.0f' % (round(self.dmesg[lp]['waking'][1] * 1000))