Home | History | Annotate | Download | only in tests

Lines Matching full:nearbyintl

814   fesetround(FE_UPWARD); // nearbyint/nearbyintf/nearbyintl obey the rounding mode.
815 feclearexcept(FE_ALL_EXCEPT); // nearbyint/nearbyintf/nearbyintl don't set the FE_INEXACT flag.
827 feclearexcept(FE_ALL_EXCEPT); // nearbyint/nearbyintf/nearbyintl don't set the FE_INEXACT flag.
828 ASSERT_EQ(1234.0, nearbyintl(1234.0L));
830 ASSERT_EQ(1235.0, nearbyintl(1234.01L));
833 fesetround(FE_TOWARDZERO); // nearbyint/nearbyintf/nearbyintl obey the rounding mode.
836 ASSERT_EQ(1234.0, nearbyintl(1234.01L));