Lines Matching refs:halfToFloat

289 …alf			operator+		(const Half& other) const	{ return create(halfToFloat(m_value) + halfToFloat(othe…  in operator +()
290 …alf operator* (const Half& other) const { return create(halfToFloat(m_value) * halfToFloat(othe… in operator *()
291 …alf operator/ (const Half& other) const { return create(halfToFloat(m_value) / halfToFloat(othe… in operator /()
292 …alf operator- (const Half& other) const { return create(halfToFloat(m_value) - halfToFloat(othe… in operator -()
294 …rator+= (const Half& other) { m_value = floatToHalf(halfToFloat(other.getValue()) + halfToFloat in operator +=()
295 …rator*= (const Half& other) { m_value = floatToHalf(halfToFloat(other.getValue()) * halfToFloat in operator *=()
296 …rator/= (const Half& other) { m_value = floatToHalf(halfToFloat(other.getValue()) / halfToFloat in operator /=()
297 …rator-= (const Half& other) { m_value = floatToHalf(halfToFloat(other.getValue()) - halfToFloat in operator -=()
301 …inline bool operator< (const Half& other) const { return halfToFloat(m_value) < halfToFloat(oth… in operator <()
302 …inline bool operator> (const Half& other) const { return halfToFloat(m_value) > halfToFloat(oth… in operator >()
303 …inline bool operator<= (const Half& other) const { return halfToFloat(m_value) <= halfToFloat(o… in operator <=()
304 …inline bool operator>= (const Half& other) const { return halfToFloat(m_value) >= halfToFloat(o… in operator >=()
307 inline T to (void) const { return (T)halfToFloat(m_value); } in to()
310 inline static float halfToFloat (deFloat16 h);
462 inline float GLValue::Half::halfToFloat (deFloat16 h) in halfToFloat() function in deqp::gls::GLValue::Half