Searched refs:m_hasNaN (Results 1 – 3 of 3) sorted by relevance
/external/deqp/framework/common/ |
D | tcuInterval.hpp | 62 : m_hasNaN (false) in Interval() 71 : m_hasNaN (!!deIsNaN(val)) in Interval() 72 , m_lo (m_hasNaN ? TCU_INFINITY : val) in Interval() 73 , m_hi (m_hasNaN ? -TCU_INFINITY : val) in Interval() 79 …: m_hasNaN(hasNaN_), m_lo(lo_), m_hi(hi_), m_warningLo(-TCU_INFINITY), m_warningHi(TCU_INFINITY) {} in Interval() 82 : m_hasNaN(hasNaN_), m_lo(lo_), m_hi(hi_), m_warningLo(wlo_), m_warningHi(whi_) {} in Interval() 85 : m_hasNaN (a.m_hasNaN || b.m_hasNaN) in Interval() 96 bool hasNaN (void) const { return m_hasNaN; } in hasNaN() 97 Interval nan (void) const { return m_hasNaN ? TCU_NAN : Interval(); } in nan() 110 return Interval(m_hasNaN || other.m_hasNaN, in operator |() [all …]
|
D | tcuFloatFormat.cpp | 71 , m_hasNaN (hasNaN_) in FloatFormat() 181 if (m_hasNaN != NO) in convert() 186 if (m_hasNaN != YES) in convert()
|
D | tcuFloatFormat.hpp | 81 YesNoMaybe m_hasNaN; // Does the format support NaNs? member in tcu::FloatFormat
|