Lines Matching defs:excepts
154 * represented by `excepts'.
157 feclearexcept(int excepts)
163 _DIAGASSERT((excepts & ~FE_ALL_EXCEPT) == 0);
165 ex = excepts & FE_ALL_EXCEPT;
189 * the argument excepts in the object pointed to by the argument flagp.
192 fegetexceptflag(fexcept_t *flagp, int excepts)
199 _DIAGASSERT((excepts & ~FE_ALL_EXCEPT) == 0);
201 ex = excepts & FE_ALL_EXCEPT;
217 * represented by the argument `excepts'.
226 feraiseexcept(int excepts)
230 _DIAGASSERT((excepts & ~FE_ALL_EXCEPT) == 0);
232 ex = excepts & FE_ALL_EXCEPT;
233 fesetexceptflag(&ex, excepts);
242 * `excepts' to the states stored in the object pointed to by `flagp'. It does
246 fesetexceptflag(const fexcept_t *flagp, int excepts)
253 _DIAGASSERT((excepts & ~FE_ALL_EXCEPT) == 0);
255 ex = excepts & FE_ALL_EXCEPT;
275 * floating-point exception flags are currently set. The `excepts' argument
279 fetestexcept(int excepts)
285 _DIAGASSERT((excepts & ~FE_ALL_EXCEPT) == 0);
287 ex = excepts & FE_ALL_EXCEPT;