Home
last modified time | relevance | path

Searched refs:a_midmag (Results 1 – 4 of 4) sorted by relevance

/freebsd-10-stable/sys/sys/
Dimgact_aout.h37 ( le32toh((ex).a_midmag) & 0xffff )
40 ((ex).a_midmag >> 16) & 0x03ff )
43 ((ex).a_midmag >> 26) & 0x3f )
45 ( (ex).a_midmag = htole32((((flag) & 0x3f) <<26) | \
50 (ntohl((ex).a_midmag) & 0xffff)
52 ((ntohl((ex).a_midmag) >> 16) & 0x03ff)
54 ((ntohl((ex).a_midmag) >> 26) & 0x3f)
56 ( (ex).a_midmag = htonl( (((flag)&0x3f)<<26) | (((mid)&0x03ff)<<16) \
113 uint32_t a_midmag; /* flags<<26 | mid<<16 | magic */ member
122 #define a_magic a_midmag /* Hack for emulators */
/freebsd-10-stable/sys/kern/
Dimgact_aout.c180 if (((a_out->a_midmag >> 16) & 0xff) != 0x86 && in exec_aout_imgact()
181 ((a_out->a_midmag >> 16) & 0xff) != 0 && in exec_aout_imgact()
182 ((((int)ntohl(a_out->a_midmag)) >> 16) & 0xff) != 0x86) in exec_aout_imgact()
190 switch ((int)(a_out->a_midmag & 0xffff)) { in exec_aout_imgact()
209 switch ((int)(ntohl(a_out->a_midmag) & 0xffff)) { in exec_aout_imgact()
Dimgact_gzip.c164 switch ((int) (gz->a_out.a_midmag & 0xffff)) { in do_aout_hdr()
180 switch ((int) (ntohl(gz->a_out.a_midmag) & 0xffff)) { in do_aout_hdr()
/freebsd-10-stable/usr.bin/ldd/
Dsods.c212 printf("%s: a_midmag = 0x%lx\n", fname, (long)ex->a_midmag); in dump_file()