l_map            1202 tools/perf/util/sort.c 	struct map *l_map, *r_map;
l_map            1211 tools/perf/util/sort.c 	l_map = left->mem_info->daddr.map;
l_map            1215 tools/perf/util/sort.c 	if (!l_map && !r_map)
l_map            1218 tools/perf/util/sort.c 	if (!l_map) return -1;
l_map            1221 tools/perf/util/sort.c 	if (l_map->maj > r_map->maj) return -1;
l_map            1222 tools/perf/util/sort.c 	if (l_map->maj < r_map->maj) return 1;
l_map            1224 tools/perf/util/sort.c 	if (l_map->min > r_map->min) return -1;
l_map            1225 tools/perf/util/sort.c 	if (l_map->min < r_map->min) return 1;
l_map            1227 tools/perf/util/sort.c 	if (l_map->ino > r_map->ino) return -1;
l_map            1228 tools/perf/util/sort.c 	if (l_map->ino < r_map->ino) return 1;
l_map            1230 tools/perf/util/sort.c 	if (l_map->ino_generation > r_map->ino_generation) return -1;
l_map            1231 tools/perf/util/sort.c 	if (l_map->ino_generation < r_map->ino_generation) return 1;
l_map            1242 tools/perf/util/sort.c 	    (!(l_map->flags & MAP_SHARED)) &&
l_map            1243 tools/perf/util/sort.c 	    !l_map->maj && !l_map->min && !l_map->ino &&
l_map            1244 tools/perf/util/sort.c 	    !l_map->ino_generation) {