Lines Matching refs:int64_t

79 static int64_t cmp_null(const void *l, const void *r)  in cmp_null()
91 static int64_t
132 static int64_t
138 static int64_t
144 static int64_t
168 static int64_t _sort__dso_cmp(struct map *map_l, struct map *map_r) in _sort__dso_cmp()
188 static int64_t
232 static int64_t _sort__addr_cmp(u64 left_ip, u64 right_ip) in _sort__addr_cmp()
234 return (int64_t)(right_ip - left_ip); in _sort__addr_cmp()
237 static int64_t _sort__sym_cmp(struct symbol *sym_l, struct symbol *sym_r) in _sort__sym_cmp()
255 return (int64_t)(sym_r->start - sym_l->start); in _sort__sym_cmp()
257 return (int64_t)(sym_r->end - sym_l->end); in _sort__sym_cmp()
260 static int64_t
263 int64_t ret; in sort__sym_cmp()
281 static int64_t
358 static int64_t
392 static int64_t
419 static int64_t
520 static int64_t
549 static int64_t
577 static int64_t
598 static int64_t _sort__cgroup_dev_cmp(u64 left_dev, u64 right_dev) in _sort__cgroup_dev_cmp()
600 return (int64_t)(right_dev - left_dev); in _sort__cgroup_dev_cmp()
603 static int64_t _sort__cgroup_inode_cmp(u64 left_ino, u64 right_ino) in _sort__cgroup_inode_cmp()
605 return (int64_t)(right_ino - left_ino); in _sort__cgroup_inode_cmp()
608 static int64_t
611 int64_t ret; in sort__cgroup_id_cmp()
638 static int64_t
670 static int64_t
726 static int64_t
766 static int64_t
798 static int64_t
830 static int64_t
848 static int64_t
947 static int64_t
974 static int64_t
1003 int64_t
1013 return (int64_t)(r - l); in sort__daddr_cmp()
1032 int64_t
1042 return (int64_t)(r - l); in sort__iaddr_cmp()
1061 static int64_t
1086 static int64_t
1102 return (int64_t)(data_src_r.mem_lock - data_src_l.mem_lock); in sort__locked_cmp()
1114 static int64_t
1130 return (int64_t)(data_src_r.mem_dtlb - data_src_l.mem_dtlb); in sort__tlb_cmp()
1142 static int64_t
1158 return (int64_t)(data_src_r.mem_lvl - data_src_l.mem_lvl); in sort__lvl_cmp()
1170 static int64_t
1186 return (int64_t)(data_src_r.mem_snoop - data_src_l.mem_snoop); in sort__snoop_cmp()
1198 int64_t
1302 static int64_t
1321 static int64_t
1396 static int64_t
1406 return (int64_t)(r - l); in sort__phys_daddr_cmp()
1437 static int64_t
1469 static int64_t
1501 static int64_t
1575 static int64_t _sort__sym_size_cmp(struct symbol *sym_l, struct symbol *sym_r) in _sort__sym_size_cmp()
1577 int64_t size_l = sym_l != NULL ? symbol__size(sym_l) : 0; in _sort__sym_size_cmp()
1578 int64_t size_r = sym_r != NULL ? symbol__size(sym_r) : 0; in _sort__sym_size_cmp()
1584 static int64_t
1614 static int64_t _sort__dso_size_cmp(struct map *map_l, struct map *map_r) in _sort__dso_size_cmp()
1616 int64_t size_l = map_l != NULL ? map__size(map_l) : 0; in _sort__dso_size_cmp()
1617 int64_t size_r = map_r != NULL ? map__size(map_r) : 0; in _sort__dso_size_cmp()
1623 static int64_t
1799 static int64_t __sort__hpp_cmp(struct perf_hpp_fmt *fmt, in __sort__hpp_cmp()
1808 static int64_t __sort__hpp_collapse(struct perf_hpp_fmt *fmt, in __sort__hpp_collapse()
1812 int64_t (*collapse_fn)(struct hist_entry *, struct hist_entry *); in __sort__hpp_collapse()
1819 static int64_t __sort__hpp_sort(struct perf_hpp_fmt *fmt, in __sort__hpp_sort()
1823 int64_t (*sort_fn)(struct hist_entry *, struct hist_entry *); in __sort__hpp_sort()
2163 static int64_t __sort__hde_cmp(struct perf_hpp_fmt *fmt, in __sort__hde_cmp()