sym_l             237 tools/perf/util/sort.c static int64_t _sort__sym_cmp(struct symbol *sym_l, struct symbol *sym_r)
sym_l             239 tools/perf/util/sort.c 	if (!sym_l || !sym_r)
sym_l             240 tools/perf/util/sort.c 		return cmp_null(sym_l, sym_r);
sym_l             242 tools/perf/util/sort.c 	if (sym_l == sym_r)
sym_l             245 tools/perf/util/sort.c 	if (sym_l->inlined || sym_r->inlined) {
sym_l             246 tools/perf/util/sort.c 		int ret = strcmp(sym_l->name, sym_r->name);
sym_l             250 tools/perf/util/sort.c 		if ((sym_l->start <= sym_r->end) && (sym_l->end >= sym_r->start))
sym_l             254 tools/perf/util/sort.c 	if (sym_l->start != sym_r->start)
sym_l             255 tools/perf/util/sort.c 		return (int64_t)(sym_r->start - sym_l->start);
sym_l             257 tools/perf/util/sort.c 	return (int64_t)(sym_r->end - sym_l->end);
sym_l             552 tools/perf/util/sort.c 	struct symbol *sym_l = left->parent;
sym_l             555 tools/perf/util/sort.c 	if (!sym_l || !sym_r)
sym_l             556 tools/perf/util/sort.c 		return cmp_null(sym_l, sym_r);
sym_l             558 tools/perf/util/sort.c 	return strcmp(sym_r->name, sym_l->name);
sym_l            1575 tools/perf/util/sort.c static int64_t _sort__sym_size_cmp(struct symbol *sym_l, struct symbol *sym_r)
sym_l            1577 tools/perf/util/sort.c 	int64_t size_l = sym_l != NULL ? symbol__size(sym_l) : 0;