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