Home | History | Annotate | Download | only in tests

Lines Matching refs:fmax

805 TEST(MATH_TEST, fmax) {
806 ASSERT_DOUBLE_EQ(12.0, fmax(12.0, 10.0));
807 ASSERT_DOUBLE_EQ(12.0, fmax(12.0, nan("")));
808 ASSERT_DOUBLE_EQ(12.0, fmax(nan(""), 12.0));
1685 DoMathDataTest<1>(g_fmax_intel_data, fmax);