Searched refs:total_period (Results 1 - 12 of 12) sorted by relevance

/linux-master/tools/perf/tests/
H A Dhists_filter.c169 hists->stats.total_period == 1000);
176 hists->stats.total_period ==
194 hists->stats.total_period == 1000);
223 hists->stats.total_period == 1000);
258 hists->stats.total_period == 1000);
287 hists->stats.total_period == 1000);
318 hists->stats.total_period == 1000);
/linux-master/tools/perf/util/
H A Devents_stats.h23 * The total_period is needed because by default auto-freq is used, so
26 * perf_record_sample.period and stash the result in total_period.
46 u64 total_period; member in struct:hists_stats
H A Dsort.h200 u64 total_period = hists__total_period(he->hists); local
202 if (unlikely(total_period == 0))
208 return period * 100.0 / total_period;
H A Dhist.c339 hists->stats.total_period -= diff;
1742 hists->stats.total_period = 0;
1759 hists->stats.total_period += h->stat.period;
1769 hists->stats.total_period = 0;
1781 hists->stats.total_period += he->stat.period;
2737 hists->stats.total_period;
2748 u64 nr_events = hists->stats.total_period;
2775 nr_events += pos_hists->stats.total_period;
H A Dannotate.c2379 if (hists->stats.total_period)
2380 data->percent[PERCENT_PERIOD_GLOBAL] = 100.0 * period / hists->stats.total_period;
/linux-master/include/linux/
H A Ddm-kcopyd.h30 unsigned int total_period; member in struct:dm_kcopyd_throttle
/linux-master/drivers/media/platform/st/sti/hva/
H A Dhva-debugfs.c136 dbg->total_period += period;
241 div = (u64)dbg->total_period;
248 if (dbg->total_period > 0) {
250 do_div(div, dbg->total_period);
256 if (dbg->total_period > 0) {
263 do_div(div, dbg->total_period);
H A Dhva.h170 * @total_period: total encoding periods in 0.1ms
195 u32 total_period; member in struct:hva_ctx_dbg
/linux-master/drivers/md/
H A Ddm-kcopyd.c102 * When total_period >= (1 << ACCOUNT_INTERVAL_SHIFT) the counters are divided
144 t->total_period += difference;
149 if (unlikely(t->io_period > t->total_period))
150 t->io_period = t->total_period;
152 if (unlikely(t->total_period >= (1 << ACCOUNT_INTERVAL_SHIFT))) {
153 int shift = fls(t->total_period >> ACCOUNT_INTERVAL_SHIFT);
155 t->total_period >>= shift;
159 skew = t->io_period - throttle * t->total_period / 100;
196 t->total_period += difference;
201 if (unlikely(t->io_period > t->total_period))
[all...]
/linux-master/tools/perf/ui/stdio/
H A Dhist.c592 u64 total_period = hists->stats.total_period; local
611 callchain_ret = hist_entry_callchain__fprintf(he, total_period,
/linux-master/tools/perf/
H A Dbuiltin-diff.c314 u64 he_total = he->hists->stats.total_period;
315 u64 pair_total = pair->hists->stats.total_period;
456 * The total_period is updated here before going to the output
461 hists->stats.total_period += sample->period;
H A Dbuiltin-report.c478 u64 nr_events = hists->stats.total_period;
506 nr_events += pos_hists->stats.total_period;

Completed in 151 milliseconds