Lines Matching refs:bfd_byte
45 bfd_byte *debug_section;
48 bfd_byte *debug_section_end;
51 bfd_byte *line_section;
54 bfd_byte *line_section_end;
57 bfd_byte *currentDie;
81 bfd_byte *first_child;
183 bfd_byte * aDiePtr, in parse_die()
184 bfd_byte * aDiePtrEnd) in parse_die()
186 bfd_byte *this_die = aDiePtr; in parse_die()
187 bfd_byte *xptr = this_die; in parse_die()
192 aDieInfo->length = bfd_get_32 (abfd, (bfd_byte *) xptr); in parse_die()
205 aDieInfo->tag = bfd_get_16 (abfd, (bfd_byte *) xptr); in parse_die()
216 attr = bfd_get_16 (abfd, (bfd_byte *) xptr); in parse_die()
227 aDieInfo->sibling = bfd_get_32 (abfd, (bfd_byte *) xptr); in parse_die()
230 aDieInfo->stmt_list_offset = bfd_get_32 (abfd, (bfd_byte *) xptr); in parse_die()
240 aDieInfo->low_pc = bfd_get_32 (abfd, (bfd_byte *) xptr); in parse_die()
242 aDieInfo->high_pc = bfd_get_32 (abfd, (bfd_byte *) xptr); in parse_die()
246 xptr += 2 + bfd_get_16 (abfd, (bfd_byte *) xptr); in parse_die()
249 xptr += 4 + bfd_get_32 (abfd, (bfd_byte *) xptr); in parse_die()
269 bfd_byte *xptr; in parse_line_table()
296 bfd_byte *tblend; in parse_line_table()
301 tblend = bfd_get_32 (stash->abfd, (bfd_byte *) xptr) + xptr; in parse_line_table()
305 base = bfd_get_32 (stash->abfd, (bfd_byte *) xptr); in parse_line_table()
323 = bfd_get_32 (stash->abfd, (bfd_byte *) xptr); in parse_line_table()
331 = base + bfd_get_32 (stash->abfd, (bfd_byte *) xptr); in parse_line_table()
347 bfd_byte *eachDie; in parse_functions_in_unit()