Lines Matching defs:startbuf
873 bfd_byte startbuf[4];
879 startbuf[0] = (bfd_byte)((start & 0xf0000) >> 12) & 0xff;
880 startbuf[1] = 0;
881 startbuf[2] = (bfd_byte)(start >> 8) & 0xff;
882 startbuf[3] = (bfd_byte)start & 0xff;
883 if (! ihex_write_record (abfd, 4, 0, 3, startbuf))
888 startbuf[0] = (bfd_byte)(start >> 24) & 0xff;
889 startbuf[1] = (bfd_byte)(start >> 16) & 0xff;
890 startbuf[2] = (bfd_byte)(start >> 8) & 0xff;
891 startbuf[3] = (bfd_byte)start & 0xff;
892 if (! ihex_write_record (abfd, 4, 0, 5, startbuf))