Lines Matching defs:abb
84 Dwarf_Abbrev *abb = NULL;
86 || (abb = Dwarf_Abbrev_Hash_find (&cu->abbrev_hash, code)) == NULL)
89 abb = libdw_typed_alloc (dbg, Dwarf_Abbrev);
91 abb = result;
97 if (unlikely (abb->offset != offset))
116 abb->code = code;
119 get_uleb128 (abb->tag, abbrevp, end);
122 abb->has_children = *abbrevp++ == DW_CHILDREN_yes;
123 abb->attrp = (unsigned char *) abbrevp;
124 abb->offset = offset;
153 if (Dwarf_Abbrev_Hash_insert (&cu->abbrev_hash, abb->code, abb) == -1)
158 abb = Dwarf_Abbrev_Hash_find (&cu->abbrev_hash, code);
162 return abb;