Lines Matching full:dwarf_cie
43 const struct dwarf_cie *cie1 = a;
44 const struct dwarf_cie *cie2 = b;
53 static struct dwarf_cie *
54 intern_new_cie (Dwarf_CFI *cache, Dwarf_Off offset, const Dwarf_CIE *info)
56 struct dwarf_cie *cie = malloc (sizeof (struct dwarf_cie));
158 struct dwarf_cie *
162 const struct dwarf_cie cie_key = { .offset = offset };
163 struct dwarf_cie **found = tfind (&cie_key, &cache->cie_tree, &compare_cie);
189 __libdw_intern_cie (Dwarf_CFI *cache, Dwarf_Off offset, const Dwarf_CIE *info)
191 const struct dwarf_cie cie_key = { .offset = offset };
192 struct dwarf_cie **found = tfind (&cie_key, &cache->cie_tree, &compare_cie);