Lines Matching defs:__excepts
82 feclearexcept(int __excepts)
88 __r.__bits &= ~((fenv_t)__excepts << _FPUSW_SHIFT);
95 fegetexceptflag(fexcept_t *__flagp, int __excepts)
102 *__flagp = (__r.__bits >> _FPUSW_SHIFT) & __excepts;
107 fesetexceptflag(const fexcept_t *__flagp, int __excepts)
113 __xexcepts = (fenv_t)__excepts << _FPUSW_SHIFT;
124 feraiseexcept(int __excepts)
133 fexcept_t __ex = __excepts;
134 fesetexceptflag(&__ex, __excepts);
139 fetestexcept(int __excepts)
146 return (__r.__bits >> _FPUSW_SHIFT) & __excepts;