Lines Matching refs:attr
39 dwarf_formblock (Dwarf_Attribute *attr, Dwarf_Block *return_block)
41 if (attr == NULL)
44 const unsigned char *datap = attr->valp;
45 const unsigned char *endp = attr->cu->endp;
47 switch (attr->form)
52 return_block->length = *(uint8_t *) attr->valp;
53 return_block->data = attr->valp + 1;
59 return_block->length = read_2ubyte_unaligned (attr->cu->dbg, attr->valp);
60 return_block->data = attr->valp + 2;
66 return_block->length = read_4ubyte_unaligned (attr->cu->dbg, attr->valp);
67 return_block->data = attr->valp + 4;