Lines Matching refs:bfd_byte

145   bfd_byte *data;
195 bfd_byte c; in ihex_get_byte()
246 bfd_byte *buf = NULL; in ihex_scan()
311 buf = (bfd_byte *) bfd_realloc (buf, (bfd_size_type) chars); in ihex_scan()
487 bfd_byte b[9]; in ihex_object_p()
540 ihex_read_section (bfd *abfd, asection *section, bfd_byte *contents) in ihex_read_section()
543 bfd_byte *p; in ihex_read_section()
544 bfd_byte *buf = NULL; in ihex_read_section()
585 buf = (bfd_byte *) bfd_realloc (buf, (bfd_size_type) len * 2); in ihex_read_section()
643 (bfd_byte *) section->used_by_bfd)) in ihex_get_section_contents()
647 memcpy (location, (bfd_byte *) section->used_by_bfd + offset, in ihex_get_section_contents()
663 bfd_byte *data; in ihex_set_section_contents()
675 data = (bfd_byte *) bfd_alloc (abfd, count); in ihex_set_section_contents()
718 bfd_byte *data) in ihex_write_record()
769 bfd_byte *p; in ihex_write_object_contents()
787 bfd_byte addr[2]; in ihex_write_object_contents()
796 addr[0] = (bfd_byte)(segbase >> 12) & 0xff; in ihex_write_object_contents()
797 addr[1] = (bfd_byte)(segbase >> 4) & 0xff; in ihex_write_object_contents()
830 addr[0] = (bfd_byte)(extbase >> 24) & 0xff; in ihex_write_object_contents()
831 addr[1] = (bfd_byte)(extbase >> 16) & 0xff; in ihex_write_object_contents()
855 bfd_byte startbuf[4]; in ihex_write_object_contents()
861 startbuf[0] = (bfd_byte)((start & 0xf0000) >> 12) & 0xff; in ihex_write_object_contents()
863 startbuf[2] = (bfd_byte)(start >> 8) & 0xff; in ihex_write_object_contents()
864 startbuf[3] = (bfd_byte)start & 0xff; in ihex_write_object_contents()
870 startbuf[0] = (bfd_byte)(start >> 24) & 0xff; in ihex_write_object_contents()
871 startbuf[1] = (bfd_byte)(start >> 16) & 0xff; in ihex_write_object_contents()
872 startbuf[2] = (bfd_byte)(start >> 8) & 0xff; in ihex_write_object_contents()
873 startbuf[3] = (bfd_byte)start & 0xff; in ihex_write_object_contents()