/src/distrib/shark/instkernel/instkernel/ |
Makefile | 12 MDSET_SUFFIXES.-= aout create-aout 14 create-aout= \ 17 release:: check_RELEASEDIR .WAIT netbsd-INSTALL.aout.gz 18 ${RELEASE_INSTALL} netbsd-INSTALL.aout.gz \
|
/src/distrib/cats/instkernel/ |
Makefile | 9 MDSETTARGETS= INSTALL ${RAMDISK} netbsd-INSTALL.aout \ 15 MDSET_POST.netbsd-INSTALL.aout= \
|
/src/sys/lib/libsa/ |
loadfile.c | 134 struct exec aout; member in union:fdloadfile::__anona6a80eac010a 176 if (OKMAGIC(N_GETMAGIC(hdr.aout)) 178 && N_GETMID(hdr.aout) == MID_MACHINE 181 rval = loadfile_aout(fd, &hdr.aout, marks, flags);
|
/src/distrib/sparc/bootfs/ |
Makefile | 34 MDSET_SUFFIXES.netbsd.ram= aout create-aout 41 create-aout=\ 45 CLEANFILES+= netbsd.ram.aout.raw
|
/src/sys/arch/ews4800mips/stand/common/ |
coffhdrfix.c | 85 struct coff_aouthdr aout; local in function:main 97 read(fd, &aout, sizeof aout); 103 if (COFF_GET_HALF(aout.a_magic) != ECOFF_OMAGIC) { 109 fprintf(stderr, "Aout: magic: 0x%04x vstamp: %d\n", 110 COFF_GET_HALF(aout.a_magic), COFF_GET_HALF(aout.a_vstamp));
|
/src/sys/arch/vax/boot/xxboot/ |
bootxx.c | 99 struct exec aout; member in union:Xmain::__anon4825d691010a 137 read(io, (void *)&hdr.aout, sizeof(hdr.aout)); 138 if (N_GETMAGIC(hdr.aout) == OMAGIC && N_GETMID(hdr.aout) == MID_VAX) { 140 entry = hdr.aout.a_entry; 141 if (entry < sizeof(hdr.aout)) 142 entry = sizeof(hdr.aout); 143 read(io, (void *) entry, hdr.aout.a_text + hdr.aout.a_data) [all...] |
/src/tests/crypto/libcrypto/ecdh/ |
ecdhtest.c | 130 int i, alen, blen, aout, bout, ret = 0; local in function:test_ecdh_curve 220 aout = 225 for (i = 0; i < aout; i++) { 252 if ((aout < 4) || (bout != aout) || (memcmp(abuf, bbuf, aout) != 0)) { 279 for (i = 0; i < aout; i++) {
|
/src/sys/arch/pmax/pmax/ |
machdep.c | 166 struct exec *aout = (struct exec *)edata; local in function:mach_init 190 if (aout->a_midmag == 0x07018b00 && (i = aout->a_syms) != 0) {
|