Lines Matching refs:left

498 __hist_entry__cmp_compute(struct hist_entry *left, struct hist_entry *right,  in __hist_entry__cmp_compute()  argument
504 double l = left->diff.period_ratio_delta; in __hist_entry__cmp_compute()
511 double l = left->diff.period_ratio; in __hist_entry__cmp_compute()
518 s64 l = left->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
534 bool pairs_left = hist_entry__has_pairs(left); in hist_entry__cmp_compute()
544 p_left = get_pair_data(left, &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
566 p_left = get_pair_data(left, &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()
585 return left->dummy ? 1 : -1; in hist_entry__cmp_compute_idx()
593 struct hist_entry *left __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()