Lines Matching defs:__excepts
119 feclearexcept(int __excepts)
123 __excepts &= FE_ALL_EXCEPT;
126 __fpsr &= ~__excepts;
133 fegetexceptflag(fexcept_t *__flagp, int __excepts)
139 *__flagp = __fpsr & __excepts & FE_ALL_EXCEPT;
145 fesetexceptflag(const fexcept_t *__flagp, int __excepts)
151 __fpsr &= ~(__excepts & FE_ALL_EXCEPT);
152 __fpsr |= *__flagp & __excepts & FE_ALL_EXCEPT;
160 feraiseexcept(int __excepts)
162 if (__excepts & FE_INVALID) /* Inf * 0 */
165 if (__excepts & FE_DIVBYZERO) /* 1.0 / 0 */
168 if (__excepts & FE_OVERFLOW) /* MAX * MAX */
171 if (__excepts & FE_UNDERFLOW) /* e ^ -MAX */
174 if (__excepts & FE_INEXACT) /* 1 / 3 */
181 fetestexcept(int __excepts)
187 return __fpsr & __excepts & FE_ALL_EXCEPT;