Lines Matching refs:int64_t
85 static int64_t cmp_null(const void *l, const void *r) in cmp_null()
97 static int64_t
138 static int64_t
144 static int64_t
150 static int64_t
174 static int64_t _sort__dso_cmp(struct map *map_l, struct map *map_r) in _sort__dso_cmp()
194 static int64_t
238 static int64_t _sort__addr_cmp(u64 left_ip, u64 right_ip) in _sort__addr_cmp()
240 return (int64_t)(right_ip - left_ip); in _sort__addr_cmp()
243 int64_t _sort__sym_cmp(struct symbol *sym_l, struct symbol *sym_r) in _sort__sym_cmp()
261 return (int64_t)(sym_r->start - sym_l->start); in _sort__sym_cmp()
263 return (int64_t)(sym_r->end - sym_l->end); in _sort__sym_cmp()
266 static int64_t
269 int64_t ret; in sort__sym_cmp()
287 static int64_t
371 static int64_t
405 static int64_t
432 static int64_t
533 static int64_t
562 static int64_t
590 static int64_t
611 static int64_t _sort__cgroup_dev_cmp(u64 left_dev, u64 right_dev) in _sort__cgroup_dev_cmp()
613 return (int64_t)(right_dev - left_dev); in _sort__cgroup_dev_cmp()
616 static int64_t _sort__cgroup_inode_cmp(u64 left_ino, u64 right_ino) in _sort__cgroup_inode_cmp()
618 return (int64_t)(right_ino - left_ino); in _sort__cgroup_inode_cmp()
621 static int64_t
624 int64_t ret; in sort__cgroup_id_cmp()
651 static int64_t
684 static int64_t
716 static int64_t
772 static int64_t
812 static int64_t
844 static int64_t
876 static int64_t
894 static int64_t
993 static int64_t
1020 static int64_t
1049 int64_t
1059 return (int64_t)(r - l); in sort__daddr_cmp()
1075 int64_t
1085 return (int64_t)(r - l); in sort__iaddr_cmp()
1101 static int64_t
1126 static int64_t
1142 return (int64_t)(data_src_r.mem_lock - data_src_l.mem_lock); in sort__locked_cmp()
1154 static int64_t
1170 return (int64_t)(data_src_r.mem_dtlb - data_src_l.mem_dtlb); in sort__tlb_cmp()
1182 static int64_t
1198 return (int64_t)(data_src_r.mem_lvl - data_src_l.mem_lvl); in sort__lvl_cmp()
1210 static int64_t
1226 return (int64_t)(data_src_r.mem_snoop - data_src_l.mem_snoop); in sort__snoop_cmp()
1238 int64_t
1328 static int64_t
1361 static int64_t
1394 static int64_t
1469 static int64_t
1485 return (int64_t)(data_src_r.mem_blk - data_src_l.mem_blk); in sort__blocked_cmp()
1504 static int64_t
1514 return (int64_t)(r - l); in sort__phys_daddr_cmp()
1545 static int64_t
1555 return (int64_t)(r - l); in sort__data_page_size_cmp()
1574 static int64_t
1580 return (int64_t)(r - l); in sort__code_page_size_cmp()
1599 static int64_t
1631 static int64_t
1663 static int64_t
1737 static int64_t _sort__sym_size_cmp(struct symbol *sym_l, struct symbol *sym_r) in _sort__sym_size_cmp()
1739 int64_t size_l = sym_l != NULL ? symbol__size(sym_l) : 0; in _sort__sym_size_cmp()
1740 int64_t size_r = sym_r != NULL ? symbol__size(sym_r) : 0; in _sort__sym_size_cmp()
1746 static int64_t
1776 static int64_t _sort__dso_size_cmp(struct map *map_l, struct map *map_r) in _sort__dso_size_cmp()
1778 int64_t size_l = map_l != NULL ? map__size(map_l) : 0; in _sort__dso_size_cmp()
1779 int64_t size_r = map_r != NULL ? map__size(map_r) : 0; in _sort__dso_size_cmp()
1785 static int64_t
1983 static int64_t __sort__hpp_cmp(struct perf_hpp_fmt *fmt, in __sort__hpp_cmp()
1992 static int64_t __sort__hpp_collapse(struct perf_hpp_fmt *fmt, in __sort__hpp_collapse()
1996 int64_t (*collapse_fn)(struct hist_entry *, struct hist_entry *); in __sort__hpp_collapse()
2003 static int64_t __sort__hpp_sort(struct perf_hpp_fmt *fmt, in __sort__hpp_sort()
2007 int64_t (*sort_fn)(struct hist_entry *, struct hist_entry *); in __sort__hpp_sort()
2347 static int64_t __sort__hde_cmp(struct perf_hpp_fmt *fmt, in __sort__hde_cmp()