Searched defs:hasNaN (Results 1 - 3 of 3) sorted by relevance

/external/eigen/Eigen/src/Core/
H A DBooleanRedux.h137 inline bool DenseBase<Derived>::hasNaN() const function in class:Eigen::DenseBase
144 * \sa hasNaN()
149 return !((derived()-derived()).hasNaN());
/external/deqp/framework/common/
H A DtcuFloatFormat.cpp65 YesNoMaybe hasNaN)
71 , m_hasNaN (hasNaN)
178 if (x.hasNaN())
258 return interval.hasNaN() ? "{ NaN }" : "{}";
261 return (std::string(interval.hasNaN() ? "{ NaN, " : "{ ") +
266 return (std::string(interval.hasNaN() ? "{ NaN } | " : "") +
59 FloatFormat(int minExp, int maxExp, int fractionBits, bool exactPrecision, YesNoMaybe hasSubnormal_, YesNoMaybe hasInf, YesNoMaybe hasNaN) argument
H A DtcuInterval.hpp81 bool hasNaN (void) const { return m_hasNaN; } function in class:tcu::Interval
85 bool isOrdinary (void) const { return !hasNaN() && !empty() && isFinite(); }
116 (!other.hasNaN() || hasNaN()));
122 (other.hasNaN() && hasNaN()));
127 return Interval(hasNaN(), -hi(), -lo());
225 if (VAR##_arg_.hasNaN()) \

Completed in 282 milliseconds