Lines Matching refs:left
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)
146 struct dso *dso_l = left->ms.map ? left->ms.map->dso : NULL;
179 sort__sym_cmp(struct hist_entry *left, struct hist_entry *right)
183 if (left->ms.sym == right->ms.sym)
186 ip_l = left->ms.sym ? left->ms.sym->start : left->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)
225 char *comm_l = left->thread->comm;
237 sort__parent_cmp(struct hist_entry *left, struct hist_entry *right)
239 struct symbol *sym_l = left->parent;
258 sort__cpu_cmp(struct hist_entry *left, struct hist_entry *right)
260 return right->cpu - left->cpu;