Lines Matching defs:__excepts
153 feclearexcept(int __excepts)
157 if (__excepts & FE_INVALID)
158 __excepts |= FE_ALL_INVALID;
160 __r.__bits.__reg &= ~__excepts;
166 fegetexceptflag(fexcept_t *__flagp, int __excepts)
171 *__flagp = __r.__bits.__reg & __excepts;
176 fesetexceptflag(const fexcept_t *__flagp, int __excepts)
180 if (__excepts & FE_INVALID)
181 __excepts |= FE_ALL_INVALID;
183 __r.__bits.__reg &= ~__excepts;
184 __r.__bits.__reg |= *__flagp & __excepts;
190 feraiseexcept(int __excepts)
194 if (__excepts & FE_INVALID)
195 __excepts |= FE_VXSOFT;
197 __r.__bits.__reg |= __excepts;
203 fetestexcept(int __excepts)
208 return (__r.__bits.__reg & __excepts);