Home | History | Annotate | Download | only in i387

Lines Matching defs:ex

161 	int ex;
165 ex = excepts & FE_ALL_EXCEPT;
168 if (ex == FE_ALL_EXCEPT) {
172 env.x87.status &= ~ex;
178 mxcsr &= ~ex;
196 int ex;
201 ex = excepts & FE_ALL_EXCEPT;
209 *flagp = (mxcsr | status) & ex;
228 fexcept_t ex;
232 ex = excepts & FE_ALL_EXCEPT;
233 fesetexceptflag(&ex, excepts);
250 int ex;
255 ex = excepts & FE_ALL_EXCEPT;
258 env.x87.status &= ~ex;
259 env.x87.status |= *flagp & ex;
264 mxcsr &= ~ex;
265 mxcsr |= *flagp & ex;
283 int ex;
287 ex = excepts & FE_ALL_EXCEPT;
295 return ((status | mxcsr) & ex);