Lines Matching refs:at
37 Dwarf_Attribute at; in dwarf_attr() local
46 if ((at = _dwarf_attr_find(die, attr)) == NULL) { in dwarf_attr()
51 *atp = at; in dwarf_attr()
60 Dwarf_Attribute at; in dwarf_attrlist() local
89 for (i = 0, at = STAILQ_FIRST(&die->die_attr); in dwarf_attrlist()
90 i < *attrcount && at != NULL; i++, at = STAILQ_NEXT(at, at_next)) in dwarf_attrlist()
91 die->die_attrarray[i] = at; in dwarf_attrlist()
117 dwarf_attroffset(Dwarf_Attribute at, Dwarf_Off *ret_off, Dwarf_Error *error) in dwarf_attroffset() argument
121 dbg = at != NULL ? at->at_die->die_dbg : NULL; in dwarf_attroffset()
123 if (at == NULL || ret_off == NULL) { in dwarf_attroffset()
128 *ret_off = at->at_offset; in dwarf_attroffset()
136 Dwarf_Attribute at; in dwarf_lowpc() local
146 if ((at = _dwarf_attr_find(die, DW_AT_low_pc)) == NULL) { in dwarf_lowpc()
151 *ret_lowpc = at->u[0].u64; in dwarf_lowpc()
167 Dwarf_Attribute at; in dwarf_highpc_b() local
178 if ((at = _dwarf_attr_find(die, DW_AT_high_pc)) == NULL) { in dwarf_highpc_b()
183 *ret_highpc = at->u[0].u64; in dwarf_highpc_b()
186 *ret_form = at->at_form; in dwarf_highpc_b()
193 at->at_form); in dwarf_highpc_b()
202 Dwarf_Attribute at; in dwarf_bytesize() local
212 if ((at = _dwarf_attr_find(die, DW_AT_byte_size)) == NULL) { in dwarf_bytesize()
217 *ret_size = at->u[0].u64; in dwarf_bytesize()
225 Dwarf_Attribute at; in dwarf_bitsize() local
235 if ((at = _dwarf_attr_find(die, DW_AT_bit_size)) == NULL) { in dwarf_bitsize()
240 *ret_size = at->u[0].u64; in dwarf_bitsize()
248 Dwarf_Attribute at; in dwarf_bitoffset() local
258 if ((at = _dwarf_attr_find(die, DW_AT_bit_offset)) == NULL) { in dwarf_bitoffset()
263 *ret_size = at->u[0].u64; in dwarf_bitoffset()
271 Dwarf_Attribute at; in dwarf_srclang() local
281 if ((at = _dwarf_attr_find(die, DW_AT_language)) == NULL) { in dwarf_srclang()
286 *ret_lang = at->u[0].u64; in dwarf_srclang()
294 Dwarf_Attribute at; in dwarf_arrayorder() local
304 if ((at = _dwarf_attr_find(die, DW_AT_ordering)) == NULL) { in dwarf_arrayorder()
309 *ret_order = at->u[0].u64; in dwarf_arrayorder()