Lines Matching defs:excepts
61 * represented by `excepts'.
64 feclearexcept(int excepts)
69 _DIAGASSERT((excepts & ~FE_ALL_EXCEPT) == 0);
71 ex = excepts & FE_ALL_EXCEPT;
84 * by the argument excepts in the object pointed to by the argument flagp.
87 fegetexceptflag(fexcept_t *flagp, int excepts)
93 _DIAGASSERT((excepts & ~_FE_ALL_EXCEPT) == 0);
95 ex = excepts & FE_ALL_EXCEPT;
107 * `excepts' to the states stored in the object pointed to by `flagp'. It does
111 fesetexceptflag(const fexcept_t *flagp, int excepts)
117 _DIAGASSERT((excepts & ~FE_ALL_EXCEPT) == 0);
119 ex = excepts & FE_ALL_EXCEPT;
132 * represented by the argument `excepts'.
138 feraiseexcept(int excepts)
143 _DIAGASSERT((excepts & ~FE_ALL_EXCEPT) == 0);
145 ex = excepts & FE_ALL_EXCEPT;
180 * floating-point exception flags are currently set. The `excepts' argument
184 fetestexcept(int excepts)
188 _DIAGASSERT((excepts & ~FE_ALL_EXCEPT) == 0);
192 return r & (excepts & FE_ALL_EXCEPT);