HomeSort by relevance Sort by last modified time
    Searched defs:m_hasNaN (Results 1 - 2 of 2) sorted by null

  /external/deqp/framework/common/
tcuFloatFormat.hpp 82 YesNoMaybe m_hasNaN; // Does the format support NaNs?
tcuInterval.hpp 62 : m_hasNaN (false)
69 : m_hasNaN (!!deIsNaN(val))
70 , m_lo (m_hasNaN ? TCU_INFINITY : val)
71 , m_hi (m_hasNaN ? -TCU_INFINITY : val) {}
74 : m_hasNaN (a.m_hasNaN || b.m_hasNaN)
81 bool hasNaN (void) const { return m_hasNaN; }
82 Interval nan (void) const { return m_hasNaN ? TCU_NAN : Interval(); }
90 return Interval(m_hasNaN || other.m_hasNaN
    [all...]

Completed in 50 milliseconds