Lines Matching refs:sym_entry
58 STAILQ_HEAD(sym_head, sym_entry);
60 struct sym_entry { struct
63 STAILQ_ENTRY(sym_entry) sym_entries; argument
229 static void sym_list_print_each(struct sym_entry *,
232 static struct sym_entry *sym_list_sort(struct sym_print_data *);
317 assert(((const struct sym_entry *)l)->name != NULL); in cmp_name()
318 assert(((const struct sym_entry *)r)->name != NULL); in cmp_name()
320 return (strcmp(((const struct sym_entry *)l)->name, in cmp_name()
321 ((const struct sym_entry *)r)->name)); in cmp_name()
338 const struct sym_entry *l, *r; in cmp_size()
360 const struct sym_entry *l, *r; in cmp_value()
1582 print_lineno(struct sym_entry *ep, struct func_info_head *func_info, in print_lineno()
1858 struct sym_entry *ep, *ep_n; in sym_list_dest()
1876 struct sym_entry *e; in sym_list_insert()
1880 if ((e = malloc(sizeof(struct sym_entry))) == NULL) { in sym_list_insert()
1912 struct sym_entry *e_v; in sym_list_print()
1934 sym_list_print_each(struct sym_entry *ep, struct sym_print_data *p, in sym_list_print_each()
2001 static struct sym_entry *
2004 struct sym_entry *ep, *e_v; in sym_list_sort()
2010 if ((e_v = malloc(sizeof(struct sym_entry) * p->list_num)) == NULL) { in sym_list_sort()
2029 qsort(e_v, p->list_num, sizeof(struct sym_entry), in sym_list_sort()