Searched refs:startbuf (Results 1 – 1 of 1) sorted by relevance
855 bfd_byte startbuf[4]; in ihex_write_object_contents() local861 startbuf[0] = (bfd_byte)((start & 0xf0000) >> 12) & 0xff; in ihex_write_object_contents()862 startbuf[1] = 0; 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()865 if (! ihex_write_record (abfd, 4, 0, 3, startbuf)) 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()[all …]