Lines Matching defs:__excepts
83 feclearexcept(int __excepts)
87 __excepts &= FE_ALL_EXCEPT;
90 __fpscr &= ~__excepts;
97 fegetexceptflag(fexcept_t *__flagp, int __excepts)
103 *__flagp = __fpscr & __excepts & FE_ALL_EXCEPT;
109 fesetexceptflag(const fexcept_t *__flagp, int __excepts)
115 __fpscr &= ~(__excepts & FE_ALL_EXCEPT);
116 __fpscr |= *__flagp & __excepts & FE_ALL_EXCEPT;
139 feraiseexcept(int __excepts)
143 if (__excepts & FE_INVALID) /* Inf * 0 */
146 if (__excepts & FE_DIVBYZERO) /* 1.0 / 0 */
149 if (__excepts & FE_OVERFLOW) /* MAX * MAX */
152 if (__excepts & FE_UNDERFLOW) /* MIN / 10.0 */
155 if (__excepts & FE_INEXACT) /* 1 / 3 */
160 __fpscr |= __excepts & FE_ALL_EXCEPT;
168 fetestexcept(int __excepts)
174 return __fpscr & __excepts & FE_ALL_EXCEPT;