Searched refs:FE_ALL_EXCEPT (Results 1 – 25 of 154) sorted by relevance
1234567
36 temp.env.__status_word &= ~(FE_ALL_EXCEPT in __fesetenv()37 | (FE_ALL_EXCEPT << 27) in __fesetenv()42 temp.env.__status_word |= FE_ALL_EXCEPT; in __fesetenv()45 & (FE_ALL_EXCEPT in __fesetenv()47 | (FE_ALL_EXCEPT << 27))); in __fesetenv()
36 temp.__status_word |= s.sw[0] & (FE_ALL_EXCEPT << 27); in __feupdateenv()41 temp.__status_word = s.sw[0] & (FE_ALL_EXCEPT << 27); in __feupdateenv()45 temp.__status_word = (s.sw[0] & (FE_ALL_EXCEPT << 27)) | FE_ALL_EXCEPT; in __feupdateenv()
35 temp.__status_word &= ~(excepts & FE_ALL_EXCEPT); in fesetexceptflag()36 temp.__status_word |= *flagp & excepts & FE_ALL_EXCEPT; in fesetexceptflag()46 mxcsr &= ~(excepts & FE_ALL_EXCEPT); in fesetexceptflag()47 mxcsr |= *flagp & excepts & FE_ALL_EXCEPT; in fesetexceptflag()
30 new_fpsr = old_fpsr | ((fenv_t) excepts & FE_ALL_EXCEPT); in fedisableexcept()34 return (old_fpsr ^ FE_ALL_EXCEPT) & FE_ALL_EXCEPT; in fedisableexcept()
30 new_fpsr = old_fpsr & ~((fenv_t) excepts & FE_ALL_EXCEPT); in feenableexcept()34 return (old_fpsr ^ FE_ALL_EXCEPT) & FE_ALL_EXCEPT; in feenableexcept()
28 return (fpsr ^ FE_ALL_EXCEPT) & FE_ALL_EXCEPT; in fegetexcept()
29 fpsr &= ~(((fenv_t) excepts & FE_ALL_EXCEPT) << 13); in fesetexceptflag()32 fpsr |= ((*flagp & excepts & FE_ALL_EXCEPT) << 13); in fesetexceptflag()
34 temp.__status_word &= ~(excepts & FE_ALL_EXCEPT); in __fesetexceptflag()35 temp.__status_word |= *flagp & excepts & FE_ALL_EXCEPT; in __fesetexceptflag()51 xnew_exc &= ~(excepts & FE_ALL_EXCEPT); in __fesetexceptflag()52 xnew_exc |= *flagp & excepts & FE_ALL_EXCEPT; in __fesetexceptflag()
38 temp.__status_register &= ~FE_ALL_EXCEPT; in __fesetenv()39 temp.__control_register &= ~((FE_ALL_EXCEPT << 6) | FE_UPWARD); in __fesetenv()43 temp.__control_register |= FE_ALL_EXCEPT << 6; in __fesetenv()47 & ((FE_ALL_EXCEPT << 6) | FE_UPWARD)); in __fesetenv()48 temp.__status_register |= envp->__status_register & FE_ALL_EXCEPT; in __fesetenv()
29 old_exc = (new_exc >> 6) & FE_ALL_EXCEPT; in feenableexcept()31 excepts &= FE_ALL_EXCEPT; in feenableexcept()
29 old_exc = (new_exc >> 6) & FE_ALL_EXCEPT; in fedisableexcept()31 excepts &= FE_ALL_EXCEPT; in fedisableexcept()
33 fpc_new = fpc & ~((excepts & FE_ALL_EXCEPT) << FPC_FLAGS_SHIFT); in fesetexceptflag()38 fpc_new &= ~((excepts & FE_ALL_EXCEPT) << FPC_DXC_SHIFT); in fesetexceptflag()41 fpc_new |= (*flagp & excepts & FE_ALL_EXCEPT) << FPC_FLAGS_SHIFT; in fesetexceptflag()
25 return (__sim_disabled_exceptions_thread ^ FE_ALL_EXCEPT) & FE_ALL_EXCEPT; in fegetexcept()
5 #undef FE_ALL_EXCEPT6 #define FE_ALL_EXCEPT 0x7c macro
25 asm volatile ("csrc fcsr, %0" : : "r" (~FE_ALL_EXCEPT)); in fesetmode()28 asm volatile ("csrs fcsr, %0" : : "r" (*modep & ~FE_ALL_EXCEPT)); in fesetmode()
52 FE_ALL_EXCEPT = enumerator53 #define FE_ALL_EXCEPT (FE_INEXACT | FE_UNDERFLOW | FE_OVERFLOW | FE_DIVBYZERO | FE_UNNORMAL | FE_IN… macro54 FE_ALL_EXCEPT
30 old_exc = (temp >> 5) & FE_ALL_EXCEPT; in fedisableexcept()32 excepts &= FE_ALL_EXCEPT; in fedisableexcept()
32 temp &= ~(excepts & FE_ALL_EXCEPT); in fesetexceptflag()33 temp |= (*flagp & excepts & FE_ALL_EXCEPT); in fesetexceptflag()
30 old_flag = (temp >> 5) & FE_ALL_EXCEPT; in feenableexcept()31 excepts &= FE_ALL_EXCEPT; in feenableexcept()
29 old_exc = (new_exc >> 18) & FE_ALL_EXCEPT; in fedisableexcept()30 new_exc &= ~(((fenv_t)excepts & FE_ALL_EXCEPT) << 18); in fedisableexcept()
29 old_exc = (new_exc >> 18) & FE_ALL_EXCEPT; in feenableexcept()30 new_exc |= (((fenv_t)excepts & FE_ALL_EXCEPT) << 18); in feenableexcept()
29 #define SWCR_ENABLE_MASK (FE_ALL_EXCEPT >> SWCR_ENABLE_SHIFT)30 #define SWCR_STATUS_MASK (FE_ALL_EXCEPT)
64 FE_ALL_EXCEPT = enumerator65 #define FE_ALL_EXCEPT (0x3f << 17) macro66 FE_ALL_EXCEPT
29 excepts &= FE_ALL_EXCEPT; in fedisableexcept()35 return (fpcr >> FE_EXCEPT_SHIFT) & FE_ALL_EXCEPT; in fedisableexcept()
Completed in 18 milliseconds