Home
last modified time | relevance | path

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

/f-stack/freebsd/sys/
H A Dimgact_aout.h39 ( le32toh((ex).a_midmag) & 0xffff )
42 ((ex).a_midmag >> 16) & 0x03ff )
45 ((ex).a_midmag >> 26) & 0x3f )
47 ( (ex).a_midmag = htole32((((flag) & 0x3f) <<26) | \
52 (ntohl((ex).a_midmag) & 0xffff)
54 ((ntohl((ex).a_midmag) >> 16) & 0x03ff)
56 ((ntohl((ex).a_midmag) >> 26) & 0x3f)
58 ( (ex).a_midmag = htonl( (((flag)&0x3f)<<26) | (((mid)&0x03ff)<<16) \
114 uint32_t a_midmag; /* flags<<26 | mid<<16 | magic */ member
123 #define a_magic a_midmag /* Hack for emulators */
/f-stack/freebsd/kern/
H A Dimgact_aout.c174 if (((a_out->a_midmag >> 16) & 0xff) != 0x86 && in exec_aout_imgact()
175 ((a_out->a_midmag >> 16) & 0xff) != 0 && in exec_aout_imgact()
176 ((((int)ntohl(a_out->a_midmag)) >> 16) & 0xff) != 0x86) in exec_aout_imgact()
184 switch ((int)(a_out->a_midmag & 0xffff)) { in exec_aout_imgact()
203 switch ((int)(ntohl(a_out->a_midmag) & 0xffff)) { in exec_aout_imgact()