Home
last modified time | relevance | path

Searched refs:sym_l (Results 1 – 1 of 1) sorted by relevance

/Linux-v4.19/tools/perf/util/
Dsort.c224 static int64_t _sort__sym_cmp(struct symbol *sym_l, struct symbol *sym_r) in _sort__sym_cmp() argument
226 if (!sym_l || !sym_r) in _sort__sym_cmp()
227 return cmp_null(sym_l, sym_r); in _sort__sym_cmp()
229 if (sym_l == sym_r) in _sort__sym_cmp()
232 if (sym_l->inlined || sym_r->inlined) in _sort__sym_cmp()
233 return strcmp(sym_l->name, sym_r->name); in _sort__sym_cmp()
235 if (sym_l->start != sym_r->start) in _sort__sym_cmp()
236 return (int64_t)(sym_r->start - sym_l->start); in _sort__sym_cmp()
238 return (int64_t)(sym_r->end - sym_l->end); in _sort__sym_cmp()
482 struct symbol *sym_l = left->parent; in sort__parent_cmp() local
[all …]