Lines Matching refs:abfd
33 read_1_byte (bfd *abfd, const gdb_byte *buf)
35 return bfd_get_8 (abfd, buf);
39 read_1_signed_byte (bfd *abfd, const gdb_byte *buf)
41 return bfd_get_signed_8 (abfd, buf);
45 read_2_bytes (bfd *abfd, const gdb_byte *buf)
47 return bfd_get_16 (abfd, buf);
51 read_2_signed_bytes (bfd *abfd, const gdb_byte *buf)
53 return bfd_get_signed_16 (abfd, buf);
58 read_3_bytes (bfd *abfd, const gdb_byte *buf)
60 return bfd_get_24 (abfd, buf);
64 read_4_bytes (bfd *abfd, const gdb_byte *buf)
66 return bfd_get_32 (abfd, buf);
70 read_4_signed_bytes (bfd *abfd, const gdb_byte *buf)
72 return bfd_get_signed_32 (abfd, buf);
76 read_8_bytes (bfd *abfd, const gdb_byte *buf)
78 return bfd_get_64 (abfd, buf);
122 extern LONGEST read_initial_length (bfd *abfd, const gdb_byte *buf,
127 extern LONGEST read_offset (bfd *abfd, const gdb_byte *buf,
131 read_n_bytes (bfd *abfd, const gdb_byte *buf, unsigned int size)
141 read_direct_string (bfd *abfd, const gdb_byte *buf,