Lines Matching refs:rhs
44 symbol_entry const & lhs, symbol_entry const & rhs) in compare_by() argument
48 if (lhs.sample.counts[0] < rhs.sample.counts[0]) in compare_by()
50 if (lhs.sample.counts[0] > rhs.sample.counts[0]) in compare_by()
56 symbol_names.demangle(rhs.name)); in compare_by()
59 return image_compare(lhs.image_name, rhs.image_name); in compare_by()
62 return image_compare(lhs.app_name, rhs.app_name); in compare_by()
65 if (lhs.sample.vma < rhs.sample.vma) in compare_by()
67 if (lhs.sample.vma > rhs.sample.vma) in compare_by()
73 file_location const & f2 = rhs.sample.file_loc; in compare_by()
100 symbol_entry const * rhs) const { in operator ()()
101 return operator()(*lhs, *rhs); in operator ()()
105 symbol_entry const & rhs) const;
114 symbol_entry const & rhs) const in operator ()()
117 int ret = compare_by(compare_order[i], lhs, rhs); in operator ()()