• Home
  • Raw
  • Download

Lines Matching refs:halfToFloat

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 /()
446 …alf operator- (const Half& other) const { return create(halfToFloat(m_value) - halfToFloat(othe… 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 /=()
451 …rator-= (const Half& other) { m_value = floatToHalf(halfToFloat(other.getValue()) - halfToFloat 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(oth… in operator >()
457 …inline bool operator<= (const Half& other) const { return halfToFloat(m_value) <= halfToFloat(o… in operator <=()
458 …inline bool operator>= (const Half& other) const { return halfToFloat(m_value) >= halfToFloat(o… in operator >=()
461 inline T to (void) const { return (T)halfToFloat(m_value); } in to()
464 inline static float halfToFloat (deFloat16 h);
542 inline float GLValue::Half::halfToFloat (deFloat16 h) in halfToFloat() function in deqp::gls::__anon43398ad90111::GLValue::Half