Lines Matching refs:int64_t

66 static int64_t cmp_null(const void *l, const void *r)  in cmp_null()
78 static int64_t
119 static int64_t
125 static int64_t
131 static int64_t
155 static int64_t _sort__dso_cmp(struct map *map_l, struct map *map_r) in _sort__dso_cmp()
175 static int64_t
219 static int64_t _sort__addr_cmp(u64 left_ip, u64 right_ip) in _sort__addr_cmp()
221 return (int64_t)(right_ip - left_ip); in _sort__addr_cmp()
224 static int64_t _sort__sym_cmp(struct symbol *sym_l, struct symbol *sym_r) 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()
241 static int64_t
244 int64_t ret; in sort__sym_cmp()
262 static int64_t
339 static int64_t
373 static int64_t
400 static int64_t
450 static int64_t
479 static int64_t
507 static int64_t
528 static int64_t _sort__cgroup_dev_cmp(u64 left_dev, u64 right_dev) in _sort__cgroup_dev_cmp()
530 return (int64_t)(right_dev - left_dev); in _sort__cgroup_dev_cmp()
533 static int64_t _sort__cgroup_inode_cmp(u64 left_ino, u64 right_ino) in _sort__cgroup_inode_cmp()
535 return (int64_t)(right_ino - left_ino); in _sort__cgroup_inode_cmp()
538 static int64_t
541 int64_t ret; in sort__cgroup_id_cmp()
568 static int64_t
625 static int64_t
665 static int64_t
697 static int64_t
729 static int64_t
747 static int64_t
846 static int64_t
873 static int64_t
902 int64_t
912 return (int64_t)(r - l); in sort__daddr_cmp()
931 int64_t
941 return (int64_t)(r - l); in sort__iaddr_cmp()
960 static int64_t
985 static int64_t
1001 return (int64_t)(data_src_r.mem_lock - data_src_l.mem_lock); in sort__locked_cmp()
1013 static int64_t
1029 return (int64_t)(data_src_r.mem_dtlb - data_src_l.mem_dtlb); in sort__tlb_cmp()
1041 static int64_t
1057 return (int64_t)(data_src_r.mem_lvl - data_src_l.mem_lvl); in sort__lvl_cmp()
1069 static int64_t
1085 return (int64_t)(data_src_r.mem_snoop - data_src_l.mem_snoop); in sort__snoop_cmp()
1097 int64_t
1201 static int64_t
1220 static int64_t
1295 static int64_t
1305 return (int64_t)(r - l); in sort__phys_daddr_cmp()
1336 static int64_t
1368 static int64_t
1400 static int64_t
1474 static int64_t _sort__sym_size_cmp(struct symbol *sym_l, struct symbol *sym_r) in _sort__sym_size_cmp()
1476 int64_t size_l = sym_l != NULL ? symbol__size(sym_l) : 0; in _sort__sym_size_cmp()
1477 int64_t size_r = sym_r != NULL ? symbol__size(sym_r) : 0; in _sort__sym_size_cmp()
1483 static int64_t
1513 static int64_t _sort__dso_size_cmp(struct map *map_l, struct map *map_r) in _sort__dso_size_cmp()
1515 int64_t size_l = map_l != NULL ? map__size(map_l) : 0; in _sort__dso_size_cmp()
1516 int64_t size_r = map_r != NULL ? map__size(map_r) : 0; in _sort__dso_size_cmp()
1522 static int64_t
1695 static int64_t __sort__hpp_cmp(struct perf_hpp_fmt *fmt, in __sort__hpp_cmp()
1704 static int64_t __sort__hpp_collapse(struct perf_hpp_fmt *fmt, in __sort__hpp_collapse()
1708 int64_t (*collapse_fn)(struct hist_entry *, struct hist_entry *); in __sort__hpp_collapse()
1715 static int64_t __sort__hpp_sort(struct perf_hpp_fmt *fmt, in __sort__hpp_sort()
1719 int64_t (*sort_fn)(struct hist_entry *, struct hist_entry *); in __sort__hpp_sort()
2059 static int64_t __sort__hde_cmp(struct perf_hpp_fmt *fmt, in __sort__hde_cmp()