Home | History | Annotate | Download | only in tests

Lines Matching refs:lrintf

761   fesetround(FE_UPWARD); // lrint/lrintf/lrintl obey the rounding mode.
763 ASSERT_EQ(1235, lrintf(1234.01f));
765 fesetround(FE_TOWARDZERO); // lrint/lrintf/lrintl obey the rounding mode.
767 ASSERT_EQ(1234, lrintf(1234.01f));
1709 DoMathDataTest<1>(g_lrintf_intel_data, lrintf);