Home
last modified time | relevance | path

Searched refs:new_excepts (Results 1 – 5 of 5) sorted by relevance

/dports/science/InsightToolkit/ITK-5.0.1/Modules/Core/Common/src/
H A DitkFloatingPointExceptions_unix_feenableexcept_using_fegetenv.cxx57 const fexcept_t new_excepts = (excepts & FE_ALL_EXCEPT) >> FE_EXCEPT_SHIFT; in itk_feenableexcept() local
65 fenv = (fenv & ~new_excepts) | new_excepts; in itk_feenableexcept()
101 const fexcept_t new_excepts = excepts & FE_ALL_EXCEPT; in itk_feenableexcept() local
110 fenv.__itk_control_word &= static_cast<fexcept_t>(~new_excepts); in itk_feenableexcept()
111 fenv.__mxcsr &= ~(new_excepts << 7); in itk_feenableexcept()
119 const fexcept_t new_excepts = excepts & FE_ALL_EXCEPT; in itk_fedisableexcept() local
128 fenv.__itk_control_word |= new_excepts; in itk_fedisableexcept()
129 fenv.__mxcsr |= new_excepts << 7; in itk_fedisableexcept()
/dports/science/gromacs/gromacs-2021.4/src/gromacs/math/
H A Dutilities.cpp105 unsigned int new_excepts = c_FPexceptions & FE_ALL_EXCEPT; in gmx_feenableexcept()
113 fenv.__control &= ~new_excepts; in gmx_feenableexcept()
114 fenv.__mxcsr &= ~(new_excepts << 7); in gmx_feenableexcept()
128 unsigned int new_excepts = c_FPexceptions & FE_ALL_EXCEPT; in gmx_fedisableexcept()
135 fenv.__control |= new_excepts; in gmx_fedisableexcept()
136 fenv.__mxcsr |= new_excepts << 7; in gmx_fedisableexcept()
/dports/audio/faust/faust-2.37.3/architecture/faust/audio/
H A Dfpe.h41 unsigned int new_excepts = excepts & FE_ALL_EXCEPT; in feenableexcept() local
51 fenv.__control &= ~new_excepts; in feenableexcept()
52 fenv.__mxcsr &= ~(new_excepts << 7); in feenableexcept()
60 unsigned int new_excepts = excepts & FE_ALL_EXCEPT; in fedisableexcept() local
70 fenv.__control |= new_excepts; in fedisableexcept()
71 fenv.__mxcsr |= new_excepts << 7; in fedisableexcept()
/dports/biology/gemma/GEMMA-0.98.3/src/
H A Ddebug.cpp101 unsigned int new_excepts = excepts & FE_ALL_EXCEPT; in feenableexcept() local
111 fenv.__control &= ~new_excepts; in feenableexcept()
112 fenv.__mxcsr &= ~(new_excepts << 7); in feenableexcept()
120 unsigned int new_excepts = excepts & FE_ALL_EXCEPT; in fedisableexcept() local
130 fenv.__control |= new_excepts; in fedisableexcept()
131 fenv.__mxcsr |= new_excepts << 7; in fedisableexcept()
/dports/science/cdo/cdo-2.0.0/src/
H A Dcdo.cc132 const unsigned new_excepts = ((unsigned) excepts) & FE_ALL_EXCEPT; in cdo_feenableexcept() local
136 fenv.__control &= ~new_excepts; in cdo_feenableexcept()
137 fenv.__mxcsr &= ~(new_excepts << 7); in cdo_feenableexcept()