Home | History | Annotate | Download | only in bfd

Lines Matching defs:startbuf

855       bfd_byte startbuf[4];
861 startbuf[0] = (bfd_byte)((start & 0xf0000) >> 12) & 0xff;
862 startbuf[1] = 0;
863 startbuf[2] = (bfd_byte)(start >> 8) & 0xff;
864 startbuf[3] = (bfd_byte)start & 0xff;
865 if (! ihex_write_record (abfd, 4, 0, 3, startbuf))
870 startbuf[0] = (bfd_byte)(start >> 24) & 0xff;
871 startbuf[1] = (bfd_byte)(start >> 16) & 0xff;
872 startbuf[2] = (bfd_byte)(start >> 8) & 0xff;
873 startbuf[3] = (bfd_byte)start & 0xff;
874 if (! ihex_write_record (abfd, 4, 0, 5, startbuf))