Lines Matching refs:Fixed
352 class Fixed class in deqp::gls::GLValue
355 static Fixed create (deInt32 value) { Fixed v; v.m_value = value; return v; } in create()
356 …static Fixed fromFloat (float value) { Fixed v; v.m_value = (deInt32)(value * 32768.0f); retu… in fromFloat()
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 -=()
370 inline bool operator== (const Fixed& other) const { return m_value == other.m_value; } in operator ==()
371 inline bool operator!= (const Fixed& other) const { return m_value != other.m_value; } in operator !=()
372 inline bool operator< (const Fixed& other) const { return m_value < other.m_value; } in operator <()
373 inline bool operator> (const Fixed& other) const { return m_value > other.m_value; } in operator >()
374 inline bool operator<= (const Fixed& other) const { return m_value <= other.m_value; } in operator <=()
375 inline bool operator>= (const Fixed& other) const { return m_value >= other.m_value; } in operator >=()
387 explicit GLValue (Fixed value) : type(Array::INPUTTYPE_FIXED), fi(value) {} in GLValue()
407 Fixed fi;