Lines Matching refs:getValue
246 inline Type getValue (void) const { return m_value; } in getValue() function in deqp::gls::GLValue::WrappedType
248 …dType<Type>& other) const { return WrappedType<Type>::create((Type)(m_value + other.getValue())); } in operator +()
249 …dType<Type>& other) const { return WrappedType<Type>::create((Type)(m_value * other.getValue())); } in operator *()
250 …dType<Type>& other) const { return WrappedType<Type>::create((Type)(m_value / other.getValue())); } in operator /()
251 …dType<Type>& other) const { return WrappedType<Type>::create((Type)(m_value % other.getValue())); } in operator %()
252 …dType<Type>& other) const { return WrappedType<Type>::create((Type)(m_value - other.getValue())); } in operator -()
254 …Type>& operator+= (const WrappedType<Type>& other) { m_value += other.getValue(); return *this; } in operator +=()
255 …Type>& operator*= (const WrappedType<Type>& other) { m_value *= other.getValue(); return *this; } in operator *=()
256 …Type>& operator/= (const WrappedType<Type>& other) { m_value /= other.getValue(); return *this; } in operator /=()
257 …Type>& operator-= (const WrappedType<Type>& other) { m_value -= other.getValue(); return *this; } in operator -=()
279 inline Type getValue (void) const { return m_value; } in getValue() function in deqp::gls::GLValue::WrappedFloatType
281 …<Type>& other) const { return WrappedFloatType<Type>::create((Type)(m_value + other.getValue())); } in operator +()
282 …<Type>& other) const { return WrappedFloatType<Type>::create((Type)(m_value * other.getValue())); } in operator *()
283 …<Type>& other) const { return WrappedFloatType<Type>::create((Type)(m_value / other.getValue())); } in operator /()
284 …& other) const { return WrappedFloatType<Type>::create((Type)(deMod(m_value, other.getValue()))); } in operator %()
285 …<Type>& other) const { return WrappedFloatType<Type>::create((Type)(m_value - other.getValue())); } in operator -()
287 …& operator+= (const WrappedFloatType<Type>& other) { m_value += other.getValue(); return *this; } in operator +=()
288 …& operator*= (const WrappedFloatType<Type>& other) { m_value *= other.getValue(); return *this; } in operator *=()
289 …& operator/= (const WrappedFloatType<Type>& other) { m_value /= other.getValue(); return *this; } in operator /=()
290 …& operator-= (const WrappedFloatType<Type>& other) { m_value -= other.getValue(); return *this; } in operator -=()
323 inline deFloat16 getValue (void) const { return m_value; } in getValue() function in deqp::gls::GLValue::Half
325 … (const Half& other) const { return create(halfToFloat(m_value) + halfToFloat(other.getValue())); } in operator +()
326 … (const Half& other) const { return create(halfToFloat(m_value) * halfToFloat(other.getValue())); } in operator *()
327 … (const Half& other) const { return create(halfToFloat(m_value) / halfToFloat(other.getValue())); } in operator /()
328 …f& other) const { return create(deFloatMod(halfToFloat(m_value), halfToFloat(other.getValue()))); } in operator %()
329 … (const Half& other) const { return create(halfToFloat(m_value) - halfToFloat(other.getValue())); } in operator -()
331 …ator+= (const Half& other) { m_value = floatToHalf(halfToFloat(other.getValue()) + halfToFloat(… in operator +=()
332 …ator*= (const Half& other) { m_value = floatToHalf(halfToFloat(other.getValue()) * halfToFloat(… in operator *=()
333 …ator/= (const Half& other) { m_value = floatToHalf(halfToFloat(other.getValue()) / halfToFloat(… in operator /=()
334 …ator-= (const Half& other) { m_value = floatToHalf(halfToFloat(other.getValue()) - halfToFloat(… in operator -=()
357 inline deInt32 getValue (void) const { return m_value; } in getValue() function in deqp::gls::GLValue::Fixed
359 inline Fixed operator+ (const Fixed& other) const { return create(m_value + other.getValue()); } in operator +()
360 inline Fixed operator* (const Fixed& other) const { return create(m_value * other.getValue()); } in operator *()
361 inline Fixed operator/ (const Fixed& other) const { return create(m_value / other.getValue()); } in operator /()
362 inline Fixed operator% (const Fixed& other) const { return create(m_value % other.getValue()); } in operator %()
363 inline Fixed operator- (const Fixed& other) const { return create(m_value - other.getValue()); } in operator -()
365 inline Fixed& operator+= (const Fixed& other) { m_value += other.getValue(); return *this; } in operator +=()
366 inline Fixed& operator*= (const Fixed& other) { m_value *= other.getValue(); return *this; } in operator *=()
367 inline Fixed& operator/= (const Fixed& other) { m_value /= other.getValue(); return *this; } in operator /=()
368 inline Fixed& operator-= (const Fixed& other) { m_value -= other.getValue(); return *this; } in operator -=()