Lines Matching defs:m_hi
65 , m_hi (-TCU_INFINITY)
74 , m_hi (m_hasNaN ? -TCU_INFINITY : val)
80 : m_hasNaN(hasNaN_), m_lo(lo_), m_hi(hi_), m_warningLo(-TCU_INFINITY), m_warningHi(TCU_INFINITY) {}
83 : m_hasNaN(hasNaN_), m_lo(lo_), m_hi(hi_), m_warningLo(wlo_), m_warningHi(whi_) {}
88 , m_hi (de::max(a.hi(), b.hi()))
92 double length (void) const { return m_hi - m_lo; }
94 double hi (void) const { return m_hi; }
99 bool empty (void) const { return m_lo > m_hi; }
103 bool isFinite (double maxValue) const { return m_lo > -maxValue && m_hi < maxValue; }
116 de::max(m_hi, other.m_hi),
130 de::min(m_hi, other.m_hi),
202 (m_lo == other.m_lo && m_hi == other.m_hi)));
208 double m_hi;