Lines Matching refs:halfToFloat
442 …alf operator+ (const Half& other) const { return create(halfToFloat(m_value) + halfToFloat(othe… in operator +()
443 …alf operator* (const Half& other) const { return create(halfToFloat(m_value) * halfToFloat(othe… in operator *()
444 …alf operator/ (const Half& other) const { return create(halfToFloat(m_value) / halfToFloat(othe… in operator /()
445 …alf operator- (const Half& other) const { return create(halfToFloat(m_value) - halfToFloat(othe… in operator -()
447 …rator+= (const Half& other) { m_value = floatToHalf(halfToFloat(other.getValue()) + halfToFloat… in operator +=()
448 …rator*= (const Half& other) { m_value = floatToHalf(halfToFloat(other.getValue()) * halfToFloat… in operator *=()
449 …rator/= (const Half& other) { m_value = floatToHalf(halfToFloat(other.getValue()) / halfToFloat… in operator /=()
450 …rator-= (const Half& other) { m_value = floatToHalf(halfToFloat(other.getValue()) - halfToFloat… in operator -=()
454 …inline bool operator< (const Half& other) const { return halfToFloat(m_value) < halfToFloat(oth… in operator <()
455 …inline bool operator> (const Half& other) const { return halfToFloat(m_value) > halfToFloat(oth… in operator >()
456 …inline bool operator<= (const Half& other) const { return halfToFloat(m_value) <= halfToFloat(o… in operator <=()
457 …inline bool operator>= (const Half& other) const { return halfToFloat(m_value) >= halfToFloat(o… in operator >=()
460 inline T to (void) const { return (T)halfToFloat(m_value); } in to()
463 inline static float halfToFloat (deFloat16 h);
541 inline float GLValue::Half::halfToFloat (deFloat16 h) in halfToFloat() function in deqp::gls::__anond14e03d00111::GLValue::Half