Home
last modified time | relevance | path

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

/freebsd-14.2/sys/i386/i386/
H A Dvm86.c185 u_int temp_flags; in vm86_emulate() local
229 if (temp_flags & PSL_I) { in vm86_emulate()
256 temp_flags = POP(vmf) & POP_MASK; in vm86_emulate()
260 if (temp_flags & PSL_I) { in vm86_emulate()
273 temp_flags = POP(vmf) & POP_MASK; in vm86_emulate()
276 if (temp_flags & PSL_I) { in vm86_emulate()
308 if (temp_flags & PSL_I) { in vm86_emulate()
361 temp_flags = POP(vmf) & POP_MASK; in vm86_emulate()
364 if (temp_flags & PSL_I) { in vm86_emulate()
374 temp_flags = POP(vmf) & POP_MASK; in vm86_emulate()
[all …]
/freebsd-14.2/sys/net/
H A Dif.c2443 int new_flags, temp_flags; in ifhwioctl() local
2458 temp_flags = ifp->if_flags | ifp->if_drv_flags; in ifhwioctl()
2459 ifr->ifr_flags = temp_flags & 0xffff; in ifhwioctl()
2460 ifr->ifr_flagshigh = temp_flags >> 16; in ifhwioctl()
/freebsd-14.2/sys/compat/linux/
H A Dlinux_ioctl.c2240 int error, temp_flags; in linux_ioctl_socket_ifreq() local
2342 temp_flags = bifr.ifr_flags | (bifr.ifr_flagshigh << 16); in linux_ioctl_socket_ifreq()
2343 lifr.ifr_flags = bsd_to_linux_ifflags(temp_flags); in linux_ioctl_socket_ifreq()