Lines Matching defs:excepts
135 * represented by `excepts'.
138 feclearexcept(int excepts)
143 _DIAGASSERT((excepts & ~FE_ALL_EXCEPT) == 0);
145 ex = excepts & FE_ALL_EXCEPT;
168 * the argument excepts in the object pointed to by the argument flagp.
171 fegetexceptflag(fexcept_t *flagp, int excepts)
178 _DIAGASSERT((excepts & ~FE_ALL_EXCEPT) == 0);
180 ex = excepts & FE_ALL_EXCEPT;
197 * represented by the argument `excepts'.
206 feraiseexcept(int excepts)
210 _DIAGASSERT((excepts & ~FE_ALL_EXCEPT) == 0);
212 ex = excepts & FE_ALL_EXCEPT;
222 * `excepts' to the states stored in the object pointed to by `flagp'. It does
226 fesetexceptflag(const fexcept_t *flagp, int excepts)
232 _DIAGASSERT((excepts & ~FE_ALL_EXCEPT) == 0);
234 ex = excepts & FE_ALL_EXCEPT;
256 * floating-point exception flags are currently set. The `excepts' argument
260 fetestexcept(int excepts)
266 _DIAGASSERT((excepts & ~FE_ALL_EXCEPT) == 0);
268 ex = excepts & FE_ALL_EXCEPT;