Home | History | Annotate | Download | only in tests

Lines Matching refs:fmax

672 TEST(math, fmax) {
673 ASSERT_DOUBLE_EQ(12.0, fmax(12.0, 10.0));
674 ASSERT_DOUBLE_EQ(12.0, fmax(12.0, nan("")));
675 ASSERT_DOUBLE_EQ(12.0, fmax(nan(""), 12.0));
1574 DoMathDataTest<1>(g_fmax_intel_data, fmax);