Home | History | Annotate | Download | only in util

Lines Matching defs:isNan

43   static bool isNan(const Float16& val) {
64 // You must also add a isNan function that returns true if
74 static bool isNan(float f) { return std::isnan(f); }
94 static bool isNan(double f) { return std::isnan(f); }
116 static bool isNan(Float16 f) { return Float16::isNan(f); }
177 bool isNan() { return FloatProxyTraits<T>::isNan(getAsFloat()); }