Home
last modified time | relevance | path

Searched refs:temp_flags (Results 1 – 3 of 3) sorted by relevance

/freebsd/sys/i386/i386/
H A Dvm86.c184 u_int temp_flags; in vm86_emulate() local
224 temp_flags = POPL(vmf) & POP_MASK; in vm86_emulate()
226 | temp_flags | PSL_VM | PSL_I; in vm86_emulate()
228 if (temp_flags & PSL_I) { in vm86_emulate()
255 temp_flags = POP(vmf) & POP_MASK; in vm86_emulate()
257 | temp_flags | PSL_VM | PSL_I; in vm86_emulate()
259 if (temp_flags & PSL_I) { in vm86_emulate()
272 temp_flags = POP(vmf) & POP_MASK; in vm86_emulate()
274 | temp_flags | PSL_VM | PSL_I; in vm86_emulate()
275 if (temp_flags & PSL_I) { in vm86_emulate()
[all …]
/freebsd/sys/net/
H A Dif.c2438 int new_flags, temp_flags; in ifhwioctl() local
2453 temp_flags = ifp->if_flags | ifp->if_drv_flags; in ifhwioctl()
2454 ifr->ifr_flags = temp_flags & 0xffff; in ifhwioctl()
2455 ifr->ifr_flagshigh = temp_flags >> 16; in ifhwioctl()
/freebsd/sys/compat/linux/
H A Dlinux_ioctl.c2249 int error, temp_flags; in linux_ioctl_socket_ifreq() local
2351 temp_flags = bifr.ifr_flags | (bifr.ifr_flagshigh << 16); in linux_ioctl_socket_ifreq()
2352 lifr.ifr_flags = bsd_to_linux_ifflags(temp_flags); in linux_ioctl_socket_ifreq()