Home | History | Annotate | Download | only in dwarf

Lines Matching defs:table_entry

37 struct table_entry
317 struct table_entry *tab;
331 tab->tab = realloc (tab->tab, sizeof (struct table_entry) * tab->size);
345 tab->tab = realloc (tab->tab, sizeof (struct table_entry) * tab->length);
353 const struct table_entry *fa = a, *fb = b;
415 tab.tab = calloc (tab.size, sizeof (struct table_entry));
480 qsort (tab.tab, tab.length, sizeof (struct table_entry),
667 assert (sizeof (struct table_entry) % sizeof (unw_word_t) == 0);
668 di->u.rti.table_len = (fde_count * sizeof (struct table_entry)
755 static inline const struct table_entry *
756 lookup (const struct table_entry *table, size_t table_size, int32_t rel_ip)
758 unsigned long table_len = table_size / sizeof (struct table_entry);
759 const struct table_entry *e = NULL;
789 struct table_entry *e, void *arg)
791 unsigned long table_len = table_size / sizeof (struct table_entry);
802 e_addr = table + mid * sizeof (struct table_entry);
813 e_addr = table + (hi - 1) * sizeof (struct table_entry);
827 const struct table_entry *e = NULL, *table;
831 struct table_entry ent;
847 table = (const struct table_entry *) (uintptr_t) di->u.rti.table_data;
862 table_len = fdesc->index_size * sizeof (struct table_entry);