Home | History | Annotate | Download | only in util

Lines Matching refs:right

102 sort__thread_cmp(struct hist_entry *left, struct hist_entry *right)
104 return right->thread->pid - left->thread->pid;
144 sort__dso_cmp(struct hist_entry *left, struct hist_entry *right)
147 struct dso *dso_r = right->ms.map ? right->ms.map->dso : NULL;
179 sort__sym_cmp(struct hist_entry *left, struct hist_entry *right)
183 if (left->ms.sym == right->ms.sym)
187 ip_r = right->ms.sym ? right->ms.sym->start : right->ip;
217 sort__comm_cmp(struct hist_entry *left, struct hist_entry *right)
219 return right->thread->pid - left->thread->pid;
223 sort__comm_collapse(struct hist_entry *left, struct hist_entry *right)
226 char *comm_r = right->thread->comm;
237 sort__parent_cmp(struct hist_entry *left, struct hist_entry *right)
240 struct symbol *sym_r = right->parent;
258 sort__cpu_cmp(struct hist_entry *left, struct hist_entry *right)
260 return right->cpu - left->cpu;