Lines Matching refs:right

498 __hist_entry__cmp_compute(struct hist_entry *left, struct hist_entry *right,  in __hist_entry__cmp_compute()  argument
505 double r = right->diff.period_ratio_delta; in __hist_entry__cmp_compute()
512 double r = right->diff.period_ratio; in __hist_entry__cmp_compute()
519 s64 r = right->diff.wdiff; in __hist_entry__cmp_compute()
531 hist_entry__cmp_compute(struct hist_entry *left, struct hist_entry *right, in hist_entry__cmp_compute() argument
535 bool pairs_right = hist_entry__has_pairs(right); in hist_entry__cmp_compute()
545 p_right = get_pair_data(right, &data__files[sort_idx]); in hist_entry__cmp_compute()
561 hist_entry__cmp_compute_idx(struct hist_entry *left, struct hist_entry *right, in hist_entry__cmp_compute_idx() argument
567 p_right = get_pair_data(right, &data__files[sort_idx]); in hist_entry__cmp_compute_idx()
581 if (left->dummy && right->dummy) in hist_entry__cmp_compute_idx()
584 if (left->dummy || right->dummy) in hist_entry__cmp_compute_idx()
594 struct hist_entry *right __maybe_unused) in hist_entry__cmp_nop()
601 struct hist_entry *left, struct hist_entry *right) in hist_entry__cmp_baseline() argument
603 if (left->stat.period == right->stat.period) in hist_entry__cmp_baseline()
605 return left->stat.period > right->stat.period ? 1 : -1; in hist_entry__cmp_baseline()
610 struct hist_entry *left, struct hist_entry *right) in hist_entry__cmp_delta() argument
614 return hist_entry__cmp_compute(right, left, COMPUTE_DELTA, d->idx); in hist_entry__cmp_delta()
619 struct hist_entry *left, struct hist_entry *right) in hist_entry__cmp_ratio() argument
623 return hist_entry__cmp_compute(right, left, COMPUTE_RATIO, d->idx); in hist_entry__cmp_ratio()
628 struct hist_entry *left, struct hist_entry *right) in hist_entry__cmp_wdiff() argument
632 return hist_entry__cmp_compute(right, left, COMPUTE_WEIGHTED_DIFF, d->idx); in hist_entry__cmp_wdiff()
637 struct hist_entry *left, struct hist_entry *right) in hist_entry__cmp_delta_idx() argument
639 return hist_entry__cmp_compute_idx(right, left, COMPUTE_DELTA, in hist_entry__cmp_delta_idx()
645 struct hist_entry *left, struct hist_entry *right) in hist_entry__cmp_ratio_idx() argument
647 return hist_entry__cmp_compute_idx(right, left, COMPUTE_RATIO, in hist_entry__cmp_ratio_idx()
653 struct hist_entry *left, struct hist_entry *right) in hist_entry__cmp_wdiff_idx() argument
655 return hist_entry__cmp_compute_idx(right, left, COMPUTE_WEIGHTED_DIFF, in hist_entry__cmp_wdiff_idx()