Lines Matching full:alloc_stat
24 struct alloc_stat;
25 typedef int (*sort_fn_t)(struct alloc_stat *, struct alloc_stat *);
42 struct alloc_stat {
124 struct alloc_stat *data = NULL;
128 data = rb_entry(*node, struct alloc_stat, node);
164 struct alloc_stat *data = NULL;
168 data = rb_entry(*node, struct alloc_stat, node);
230 static int ptr_cmp(struct alloc_stat *, struct alloc_stat *);
231 static int callsite_cmp(struct alloc_stat *, struct alloc_stat *);
233 static struct alloc_stat *search_alloc_stat(unsigned long ptr,
239 struct alloc_stat key = { .ptr = ptr, .call_site = call_site };
242 struct alloc_stat *data;
245 data = rb_entry(node, struct alloc_stat, node);
265 struct alloc_stat *s_alloc, *s_caller;
366 struct alloc_stat *data = rb_entry(next, struct alloc_stat,
435 static void sort_insert(struct rb_root *root, struct alloc_stat *data,
443 struct alloc_stat *this;
446 this = rb_entry(*new, struct alloc_stat, node);
469 struct alloc_stat *data;
477 data = rb_entry(node, struct alloc_stat, node);
518 static int ptr_cmp(struct alloc_stat *l, struct alloc_stat *r)
532 static int callsite_cmp(struct alloc_stat *l, struct alloc_stat *r)
546 static int hit_cmp(struct alloc_stat *l, struct alloc_stat *r)
560 static int bytes_cmp(struct alloc_stat *l, struct alloc_stat *r)
574 static int frag_cmp(struct alloc_stat *l, struct alloc_stat *r)
593 static int pingpong_cmp(struct alloc_stat *l, struct alloc_stat *r)