Lines Matching refs:startbuf
902 bfd_byte startbuf[4]; local
908 startbuf[0] = (bfd_byte)((start & 0xf0000) >> 12) & 0xff;
909 startbuf[1] = 0;
910 startbuf[2] = (bfd_byte)(start >> 8) & 0xff;
911 startbuf[3] = (bfd_byte)start & 0xff;
912 if (! ihex_write_record (abfd, 4, 0, 3, startbuf))
917 startbuf[0] = (bfd_byte)(start >> 24) & 0xff;
918 startbuf[1] = (bfd_byte)(start >> 16) & 0xff;
919 startbuf[2] = (bfd_byte)(start >> 8) & 0xff;
920 startbuf[3] = (bfd_byte)start & 0xff;
921 if (! ihex_write_record (abfd, 4, 0, 5, startbuf))