• Home
  • Raw
  • Download

Lines Matching refs:halfToFloat

325 …alf			operator+		(const Half& other) const	{ return create(halfToFloat(m_value) + halfToFloat(othe…  in operator +()
326 …alf operator* (const Half& other) const { return create(halfToFloat(m_value) * halfToFloat(othe… in operator *()
327 …alf operator/ (const Half& other) const { return create(halfToFloat(m_value) / halfToFloat(othe… in operator /()
328 …ator% (const Half& other) const { return create(deFloatMod(halfToFloat(m_value), halfToFloat(othe… in operator %()
329 …alf operator- (const Half& other) const { return create(halfToFloat(m_value) - halfToFloat(othe… in operator -()
331 …rator+= (const Half& other) { m_value = floatToHalf(halfToFloat(other.getValue()) + halfToFloat in operator +=()
332 …rator*= (const Half& other) { m_value = floatToHalf(halfToFloat(other.getValue()) * halfToFloat in operator *=()
333 …rator/= (const Half& other) { m_value = floatToHalf(halfToFloat(other.getValue()) / halfToFloat in operator /=()
334 …rator-= (const Half& other) { m_value = floatToHalf(halfToFloat(other.getValue()) - halfToFloat in operator -=()
338 …inline bool operator< (const Half& other) const { return halfToFloat(m_value) < halfToFloat(oth… in operator <()
339 …inline bool operator> (const Half& other) const { return halfToFloat(m_value) > halfToFloat(oth… in operator >()
340 …inline bool operator<= (const Half& other) const { return halfToFloat(m_value) <= halfToFloat(o… in operator <=()
341 …inline bool operator>= (const Half& other) const { return halfToFloat(m_value) >= halfToFloat(o… in operator >=()
344 inline T to (void) const { return (T)halfToFloat(m_value); } in to()
347 inline static float halfToFloat (deFloat16 h);
501 inline float GLValue::Half::halfToFloat (deFloat16 h) in halfToFloat() function in deqp::gls::GLValue::Half