Lines Matching defs:excepts
75 * represented by `excepts'.
78 feclearexcept(int excepts)
83 _DIAGASSERT((excepts & ~FE_ALL_EXCEPT) == 0);
85 ex = excepts & FE_ALL_EXCEPT;
98 * by the argument excepts in the object pointed to by the argument flagp.
101 fegetexceptflag(fexcept_t *flagp, int excepts)
107 _DIAGASSERT((excepts & ~_FE_ALL_EXCEPT) == 0);
109 ex = excepts & FE_ALL_EXCEPT;
121 * `excepts' to the states stored in the object pointed to by `flagp'. It does
125 fesetexceptflag(const fexcept_t *flagp, int excepts)
131 _DIAGASSERT((excepts & ~FE_ALL_EXCEPT) == 0);
133 ex = excepts & FE_ALL_EXCEPT;
146 * represented by the argument `excepts'.
152 feraiseexcept(int excepts)
157 _DIAGASSERT((excepts & ~FE_ALL_EXCEPT) == 0);
159 ex = excepts & FE_ALL_EXCEPT;
194 * floating-point exception flags are currently set. The `excepts' argument
198 fetestexcept(int excepts)
202 _DIAGASSERT((excepts & ~FE_ALL_EXCEPT) == 0);
206 return r & (excepts & FE_ALL_EXCEPT);