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()
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 …]
DtcuFloatFormat.cpp71 , m_hasNaN (hasNaN_) in FloatFormat()
181 if (m_hasNaN != NO) in convert()
186 if (m_hasNaN != YES) in convert()
DtcuFloatFormat.hpp81 YesNoMaybe m_hasNaN; // Does the format support NaNs? member in tcu::FloatFormat