Lines Matching defs:maybestatus
346 unsigned maybestatus; /* for optional status, or allowance for spurious */
362 "errno", "errno_in", "error", "func", "maybeerror", "maybestatus", "op1", "op1i", "op1r", "op2", "op2i", "op2r",
844 case e_domain: ret.maybestatus |= FE_INVALID; break;
845 case e_divbyzero: ret.maybestatus |= FE_DIVBYZERO; break;
846 case e_overflow: ret.maybestatus |= FE_OVERFLOW; break;
847 case e_underflow: ret.maybestatus |= FE_UNDERFLOW; break;
862 if (*q == 'i') ret.maybestatus |= FE_INVALID;
863 if (*q == 'z') ret.maybestatus |= FE_DIVBYZERO;
864 if (*q == 'o') ret.maybestatus |= FE_OVERFLOW;
865 if (*q == 'u') ret.maybestatus |= FE_UNDERFLOW;
1130 if ((status|t.maybestatus|~statusmask) != (t.status|t.maybestatus|~statusmask)) {