Lines Matching defs:perf
283 * perf: holds the statistics primary for debugfs
328 struct aspeed_video_perf perf;
567 perf);
632 video->perf.last_sample = ktime_get();
780 update_perf(&video->perf);
1044 memset(&video->perf, 0, sizeof(video->perf));
1831 video->perf.duration_max = 0;
1832 video->perf.duration_min = 0xffffffff;
1954 seq_printf(s, " %-18s:\t%d\n", "Now", v->perf.duration);
1955 seq_printf(s, " %-18s:\t%d\n", "Min", v->perf.duration_min);
1956 seq_printf(s, " %-18s:\t%d\n", "Max", v->perf.duration_max);
1958 (v->perf.totaltime && v->sequence) ?
1959 1000 / (v->perf.totaltime / v->sequence) : 0);