Lines Matching refs:nextafter
92 Ambiguous nextafter(Ambiguous, Ambiguous){ return Ambiguous(); } in nextafter() function
1214 static_assert((std::is_same<decltype(std::nextafter((float)0, (float)0)), float>::value), ""); in test_nextafter()
1215 static_assert((std::is_same<decltype(std::nextafter((bool)0, (float)0)), double>::value), ""); in test_nextafter()
1216 …static_assert((std::is_same<decltype(std::nextafter((unsigned short)0, (double)0)), double>::value… in test_nextafter()
1217 …static_assert((std::is_same<decltype(std::nextafter((int)0, (long double)0)), long double>::value)… in test_nextafter()
1218 …static_assert((std::is_same<decltype(std::nextafter((float)0, (unsigned int)0)), double>::value), … in test_nextafter()
1219 static_assert((std::is_same<decltype(std::nextafter((double)0, (long)0)), double>::value), ""); in test_nextafter()
1220 …static_assert((std::is_same<decltype(std::nextafter((long double)0, (unsigned long)0)), long doubl… in test_nextafter()
1221 … static_assert((std::is_same<decltype(std::nextafter((int)0, (long long)0)), double>::value), ""); in test_nextafter()
1222 …static_assert((std::is_same<decltype(std::nextafter((int)0, (unsigned long long)0)), double>::valu… in test_nextafter()
1223 … static_assert((std::is_same<decltype(std::nextafter((double)0, (double)0)), double>::value), ""); in test_nextafter()
1224 …static_assert((std::is_same<decltype(std::nextafter((long double)0, (long double)0)), long double>… in test_nextafter()
1225 static_assert((std::is_same<decltype(std::nextafter((float)0, (double)0)), double>::value), ""); in test_nextafter()
1226 …static_assert((std::is_same<decltype(std::nextafter((float)0, (long double)0)), long double>::valu… in test_nextafter()
1227 …static_assert((std::is_same<decltype(std::nextafter((double)0, (long double)0)), long double>::val… in test_nextafter()
1230 static_assert((std::is_same<decltype(std::nextafter((int)0, (int)0)), double>::value), ""); in test_nextafter()
1231 …static_assert((std::is_same<decltype(nextafter(Ambiguous(), Ambiguous())), Ambiguous>::value), ""); in test_nextafter()
1232 assert(std::nextafter(0,1) == hexfloat<double>(0x1, 0, -1074)); in test_nextafter()