Lines Matching refs:hists

48 	struct hists		*hists;  member
222 u64 total = hists__total_period(he->hists); in period_percent()
262 u64 he_total = he->hists->stats.total_period; in formula_delta()
263 u64 pair_total = pair->hists->stats.total_period; in formula_delta()
266 he_total = he->hists->stats.total_non_filtered_period; in formula_delta()
267 pair_total = pair->hists->stats.total_non_filtered_period; in formula_delta()
313 static int hists__add_entry(struct hists *hists, in hists__add_entry() argument
317 if (__hists__add_entry(hists, al, NULL, NULL, NULL, period, weight, in hists__add_entry()
330 struct hists *hists = evsel__hists(evsel); in diff__process_sample_event() local
338 if (hists__add_entry(hists, &al, sample->period, in diff__process_sample_event()
350 hists->stats.total_period += sample->period; in diff__process_sample_event()
352 hists->stats.total_non_filtered_period += sample->period; in diff__process_sample_event()
387 struct hists *hists = evsel__hists(evsel); in perf_evlist__collapse_resort() local
389 hists__collapse_resort(hists, NULL); in perf_evlist__collapse_resort()
409 if (pair->hists == d->hists) in get_pair_data()
424 static void hists__baseline_only(struct hists *hists) in hists__baseline_only() argument
430 root = &hists->entries_collapsed; in hists__baseline_only()
432 root = hists->entries_in; in hists__baseline_only()
446 static void hists__precompute(struct hists *hists) in hists__precompute() argument
452 root = &hists->entries_collapsed; in hists__precompute()
454 root = hists->entries_in; in hists__precompute()
659 static void hists__process(struct hists *hists) in hists__process() argument
662 hists__baseline_only(hists); in hists__process()
664 hists__precompute(hists); in hists__process()
665 hists__output_resort(hists, NULL); in hists__process()
667 hists__fprintf(hists, true, 0, 0, 0, stdout); in hists__process()
692 struct hists *hists_base = evsel__hists(evsel_base); in data_process()
699 struct hists *hists; in data_process() local
705 hists = evsel__hists(evsel); in data_process()
706 d->hists = hists; in data_process()
708 hists__match(hists_base, hists); in data_process()
711 hists__link(hists_base, hists); in data_process()
820 u64 total = hists__total_period(he->hists); in baseline_percent()