Home
last modified time | relevance | path

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

/freebsd/sys/sys/
H A Dimgact_aout.h36 ( le32toh((ex).a_midmag) & 0xffff )
39 ((ex).a_midmag >> 16) & 0x03ff )
42 ((ex).a_midmag >> 26) & 0x3f )
44 ( (ex).a_midmag = htole32((((flag) & 0x3f) <<26) | \
49 (ntohl((ex).a_midmag) & 0xffff)
51 ((ntohl((ex).a_midmag) >> 16) & 0x03ff)
53 ((ntohl((ex).a_midmag) >> 26) & 0x3f)
55 ( (ex).a_midmag = htonl( (((flag)&0x3f)<<26) | (((mid)&0x03ff)<<16) \
111 uint32_t a_midmag; /* flags<<26 | mid<<16 | magic */ member
120 #define a_magic a_midmag /* Hack for emulators */
/freebsd/sys/kern/
H A Dimgact_aout.c194 if (((a_out->a_midmag >> 16) & 0xff) != 0x86 && in exec_aout_imgact()
195 ((a_out->a_midmag >> 16) & 0xff) != 0 && in exec_aout_imgact()
196 ((((int)ntohl(a_out->a_midmag)) >> 16) & 0xff) != 0x86) in exec_aout_imgact()
204 switch ((int)(a_out->a_midmag & 0xffff)) { in exec_aout_imgact()
223 switch ((int)(ntohl(a_out->a_midmag) & 0xffff)) { in exec_aout_imgact()