Lines Matching full:abb
65 Dwarf_Abbrev *abb = NULL;
67 || (abb = Dwarf_Abbrev_Hash_find (&cu->abbrev_hash, code, NULL)) == NULL)
70 abb = libdw_typed_alloc (dbg, Dwarf_Abbrev);
72 abb = result;
78 assert (abb->offset == offset);
88 abb->code = code;
89 get_uleb128 (abb->tag, abbrevp);
90 abb->has_children = *abbrevp++ == DW_CHILDREN_yes;
91 abb->attrp = abbrevp;
92 abb->offset = offset;
95 abb->attrcnt = 0;
103 while (attrname != 0 && attrform != 0 && ++abb->attrcnt);
111 (void) Dwarf_Abbrev_Hash_insert (&cu->abbrev_hash, abb->code, abb);
114 return abb;