Lines Matching refs:temp
35 fenv_t temp; in __fesetenv() local
44 __asm__ ("fnstenv %0" : "=m" (*&temp)); in __fesetenv()
48 temp.__control_word |= FE_ALL_EXCEPT_X86; in __fesetenv()
49 temp.__control_word &= ~FE_TOWARDZERO; in __fesetenv()
50 temp.__control_word |= _FPU_EXTENDED; in __fesetenv()
51 temp.__status_word &= ~FE_ALL_EXCEPT_X86; in __fesetenv()
55 temp.__control_word &= ~(FE_ALL_EXCEPT | FE_TOWARDZERO); in __fesetenv()
57 temp.__control_word |= __FE_DENORM; in __fesetenv()
58 temp.__control_word |= _FPU_EXTENDED; in __fesetenv()
59 temp.__status_word &= ~FE_ALL_EXCEPT_X86; in __fesetenv()
63 temp.__control_word &= ~(FE_ALL_EXCEPT_X86 in __fesetenv()
66 temp.__control_word |= (envp->__control_word in __fesetenv()
70 temp.__status_word &= ~FE_ALL_EXCEPT_X86; in __fesetenv()
71 temp.__status_word |= envp->__status_word & FE_ALL_EXCEPT_X86; in __fesetenv()
73 temp.__eip = 0; in __fesetenv()
74 temp.__cs_selector = 0; in __fesetenv()
75 temp.__opcode = 0; in __fesetenv()
76 temp.__data_offset = 0; in __fesetenv()
77 temp.__data_selector = 0; in __fesetenv()
79 __asm__ ("fldenv %0" : : "m" (temp)); in __fesetenv()