efh               275 arch/mips/boot/elf2ecoff.c 	struct filehdr efh;
efh               434 arch/mips/boot/elf2ecoff.c 		efh.f_magic = MIPSEBMAGIC;
efh               436 arch/mips/boot/elf2ecoff.c 		efh.f_magic = MIPSELMAGIC;
efh               441 arch/mips/boot/elf2ecoff.c 	efh.f_nscns = nosecs;
efh               442 arch/mips/boot/elf2ecoff.c 	efh.f_timdat = 0;	/* bogus */
efh               443 arch/mips/boot/elf2ecoff.c 	efh.f_symptr = 0;
efh               444 arch/mips/boot/elf2ecoff.c 	efh.f_nsyms = 0;
efh               445 arch/mips/boot/elf2ecoff.c 	efh.f_opthdr = sizeof eah;
efh               446 arch/mips/boot/elf2ecoff.c 	efh.f_flags = 0x100f;	/* Stripped, not sharable. */
efh               473 arch/mips/boot/elf2ecoff.c 	esecs[0].s_scnptr = N_TXTOFF(efh, eah);
efh               474 arch/mips/boot/elf2ecoff.c 	esecs[1].s_scnptr = N_DATOFF(efh, eah);
efh               514 arch/mips/boot/elf2ecoff.c 		convert_ecoff_filehdr(&efh);
efh               516 arch/mips/boot/elf2ecoff.c 	i = write(outfile, &efh, sizeof efh);
efh               517 arch/mips/boot/elf2ecoff.c 	if (i != sizeof efh) {
efh               548 arch/mips/boot/elf2ecoff.c 	pad = (sizeof(efh) + sizeof(eah) + nosecs * sizeof(struct scnhdr)) & 15;