Home
last modified time | relevance | path

Searched refs:m_hasNaN (Results 1 – 3 of 3) sorted by relevance

/external/deqp/framework/common/
DtcuInterval.hpp62 : m_hasNaN (false) in Interval()
69 : m_hasNaN (!!deIsNaN(val)) in Interval()
70 , m_lo (m_hasNaN ? TCU_INFINITY : val) in Interval()
71 , m_hi (m_hasNaN ? -TCU_INFINITY : val) {} in Interval()
74 : m_hasNaN (a.m_hasNaN || b.m_hasNaN) in Interval()
81 bool hasNaN (void) const { return m_hasNaN; } in hasNaN()
82 Interval nan (void) const { return m_hasNaN ? TCU_NAN : Interval(); } in nan()
90 return Interval(m_hasNaN || other.m_hasNaN, in operator |()
103 return Interval(m_hasNaN && other.m_hasNaN, in operator &()
142 return ((m_hasNaN == other.m_hasNaN) && in operator ==()
[all …]
DtcuFloatFormat.cpp71 , m_hasNaN (hasNaN_) in FloatFormat()
181 if (m_hasNaN != NO) in convert()
186 if (m_hasNaN != YES) in convert()
DtcuFloatFormat.hpp82 YesNoMaybe m_hasNaN; // Does the format support NaNs? member in tcu::FloatFormat