Lines Matching full:raise
79 * Raise a floating-point exception without relying on the standard
82 * XXX We can't raise an {over,under}flow without also raising an
129 * routines. This function may raise an inexact exception.
393 int except, pass, raise, status; in ATF_TC_BODY() local
430 /* over/underflow may also raise inexact */ in ATF_TC_BODY()
432 raise = FE_DIVBYZERO | FE_INVALID; in ATF_TC_BODY()
434 raise = ALL_STD_EXCEPT ^ except; in ATF_TC_BODY()
446 raiseexcept(raise); in ATF_TC_BODY()
447 ATF_CHECK_EQ(0, feraiseexcept(raise)); in ATF_TC_BODY()
448 ATF_CHECK_EQ(raise, fetestexcept(ALL_STD_EXCEPT)); in ATF_TC_BODY()
490 int except, pass, status, raise; in ATF_TC_BODY() local
499 /* over/underflow may also raise inexact */ in ATF_TC_BODY()
501 raise = FE_DIVBYZERO | FE_INVALID; in ATF_TC_BODY()
503 raise = ALL_STD_EXCEPT ^ except; in ATF_TC_BODY()
519 raiseexcept(raise); in ATF_TC_BODY()
530 ATF_CHECK_EQ((except | raise), fetestexcept(ALL_STD_EXCEPT)); in ATF_TC_BODY()