Home
last modified time | relevance | path

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

/freebsd/sys/i386/i386/
H A Dnpx.c816 if ((pcb->pcb_flags & PCB_NPXINITDONE) == 0) { in restore_npx_curthread()
831 pcb->pcb_flags |= PCB_NPXINITDONE; in restore_npx_curthread()
963 td->td_pcb->pcb_flags &= ~PCB_NPXINITDONE; in npxdrop()
989 if ((pcb->pcb_flags & PCB_NPXINITDONE) == 0) { in npxgetregs()
1062 pcb->pcb_flags |= PCB_NPXINITDONE; in npxuserinited()
1126 pcb->pcb_flags |= PCB_NPXUSERINITDONE | PCB_NPXINITDONE; in npxsetregs()
1431 pcb->pcb_flags |= PCB_KERNNPX | PCB_NPXNOSAVE | PCB_NPXINITDONE; in fpu_kern_enter()
1443 if ((pcb->pcb_flags & PCB_NPXINITDONE) != 0) in fpu_kern_enter()
1449 pcb->pcb_flags &= ~PCB_NPXINITDONE; in fpu_kern_enter()
1466 pcb->pcb_flags &= ~(PCB_NPXNOSAVE | PCB_NPXINITDONE); in fpu_kern_leave()
[all …]
H A Dvm_machdep.c165 pcb2->pcb_flags &= ~(PCB_NPXINITDONE | PCB_NPXUSERINITDONE | in copy_thread()
H A Dexec_machdep.c1270 curthread->td_pcb->pcb_flags &= ~(PCB_NPXINITDONE | in fpstate_drop()
/freebsd/sys/i386/include/
H A Dpcb.h83 #define PCB_NPXINITDONE 0x08 /* fpu state is initialized */ macro