Lines Matching refs:dwarf_cie
64 const struct dwarf_cie *cie1 = a;
65 const struct dwarf_cie *cie2 = b;
74 static struct dwarf_cie *
75 intern_new_cie (Dwarf_CFI *cache, Dwarf_Off offset, const Dwarf_CIE *info)
77 struct dwarf_cie *cie = malloc (sizeof (struct dwarf_cie));
179 struct dwarf_cie *
183 const struct dwarf_cie cie_key = { .offset = offset };
184 struct dwarf_cie **found = tfind (&cie_key, &cache->cie_tree, &compare_cie);
210 __libdw_intern_cie (Dwarf_CFI *cache, Dwarf_Off offset, const Dwarf_CIE *info)
212 const struct dwarf_cie cie_key = { .offset = offset };
213 struct dwarf_cie **found = tfind (&cie_key, &cache->cie_tree, &compare_cie);