he_stat           240 tools/perf/util/hist.c static void he_stat__add_cpumode_period(struct he_stat *he_stat,
he_stat           245 tools/perf/util/hist.c 		he_stat->period_sys += period;
he_stat           248 tools/perf/util/hist.c 		he_stat->period_us += period;
he_stat           251 tools/perf/util/hist.c 		he_stat->period_guest_sys += period;
he_stat           254 tools/perf/util/hist.c 		he_stat->period_guest_us += period;
he_stat           269 tools/perf/util/hist.c static void he_stat__add_period(struct he_stat *he_stat, u64 period,
he_stat           273 tools/perf/util/hist.c 	he_stat->period		+= period;
he_stat           274 tools/perf/util/hist.c 	he_stat->weight		+= weight;
he_stat           275 tools/perf/util/hist.c 	he_stat->nr_events	+= 1;
he_stat           278 tools/perf/util/hist.c static void he_stat__add_stat(struct he_stat *dest, struct he_stat *src)
he_stat           289 tools/perf/util/hist.c static void he_stat__decay(struct he_stat *he_stat)
he_stat           291 tools/perf/util/hist.c 	he_stat->period = (he_stat->period * 7) / 8;
he_stat           292 tools/perf/util/hist.c 	he_stat->nr_events = (he_stat->nr_events * 7) / 8;
he_stat            94 tools/perf/util/sort.h 	struct he_stat		stat;
he_stat            95 tools/perf/util/sort.h 	struct he_stat		*stat_acc;