Lines Matching refs:other
248 inline WrappedType<Type> operator+ (const WrappedType<Type>& other) const { return WrappedType<Type>::create((Type)(m_value + other.getValue())); }
249 inline WrappedType<Type> operator* (const WrappedType<Type>& other) const { return WrappedType<Type>::create((Type)(m_value * other.getValue())); }
250 inline WrappedType<Type> operator/ (const WrappedType<Type>& other) const { return WrappedType<Type>::create((Type)(m_value / other.getValue())); }
251 inline WrappedType<Type> operator% (const WrappedType<Type>& other) const { return WrappedType<Type>::create((Type)(m_value % other.getValue())); }
252 inline WrappedType<Type> operator- (const WrappedType<Type>& other) const { return WrappedType<Type>::create((Type)(m_value - other.getValue())); }
254 inline WrappedType<Type>& operator+= (const WrappedType<Type>& other) { m_value += other.getValue(); return *this; }
255 inline WrappedType<Type>& operator*= (const WrappedType<Type>& other) { m_value *= other.getValue(); return *this; }
256 inline WrappedType<Type>& operator/= (const WrappedType<Type>& other) { m_value /= other.getValue(); return *this; }
257 inline WrappedType<Type>& operator-= (const WrappedType<Type>& other) { m_value -= other.getValue(); return *this; }
259 inline bool operator== (const WrappedType<Type>& other) const { return m_value == other.m_value; }
260 inline bool operator!= (const WrappedType<Type>& other) const { return m_value != other.m_value; }
261 inline bool operator< (const WrappedType<Type>& other) const { return m_value < other.m_value; }
262 inline bool operator> (const WrappedType<Type>& other) const { return m_value > other.m_value; }
263 inline bool operator<= (const WrappedType<Type>& other) const { return m_value <= other.m_value; }
264 inline bool operator>= (const WrappedType<Type>& other) const { return m_value >= other.m_value; }
281 inline WrappedFloatType<Type> operator+ (const WrappedFloatType<Type>& other) const { return WrappedFloatType<Type>::create((Type)(m_value + other.getValue())); }
282 inline WrappedFloatType<Type> operator* (const WrappedFloatType<Type>& other) const { return WrappedFloatType<Type>::create((Type)(m_value * other.getValue())); }
283 inline WrappedFloatType<Type> operator/ (const WrappedFloatType<Type>& other) const { return WrappedFloatType<Type>::create((Type)(m_value / other.getValue())); }
284 inline WrappedFloatType<Type> operator% (const WrappedFloatType<Type>& other) const { return WrappedFloatType<Type>::create((Type)(deMod(m_value, other.getValue()))); }
285 inline WrappedFloatType<Type> operator- (const WrappedFloatType<Type>& other) const { return WrappedFloatType<Type>::create((Type)(m_value - other.getValue())); }
287 inline WrappedFloatType<Type>& operator+= (const WrappedFloatType<Type>& other) { m_value += other.getValue(); return *this; }
288 inline WrappedFloatType<Type>& operator*= (const WrappedFloatType<Type>& other) { m_value *= other.getValue(); return *this; }
289 inline WrappedFloatType<Type>& operator/= (const WrappedFloatType<Type>& other) { m_value /= other.getValue(); return *this; }
290 inline WrappedFloatType<Type>& operator-= (const WrappedFloatType<Type>& other) { m_value -= other.getValue(); return *this; }
292 inline bool operator== (const WrappedFloatType<Type>& other) const { return m_value == other.m_value; }
293 inline bool operator!= (const WrappedFloatType<Type>& other) const { return m_value != other.m_value; }
294 inline bool operator< (const WrappedFloatType<Type>& other) const { return m_value < other.m_value; }
295 inline bool operator> (const WrappedFloatType<Type>& other) const { return m_value > other.m_value; }
296 inline bool operator<= (const WrappedFloatType<Type>& other) const { return m_value <= other.m_value; }
297 inline bool operator>= (const WrappedFloatType<Type>& other) const { return m_value >= other.m_value; }
325 inline Half operator+ (const Half& other) const { return create(halfToFloat(m_value) + halfToFloat(other.getValue())); }
326 inline Half operator* (const Half& other) const { return create(halfToFloat(m_value) * halfToFloat(other.getValue())); }
327 inline Half operator/ (const Half& other) const { return create(halfToFloat(m_value) / halfToFloat(other.getValue())); }
328 inline Half operator% (const Half& other) const { return create(deFloatMod(halfToFloat(m_value), halfToFloat(other.getValue()))); }
329 inline Half operator- (const Half& other) const { return create(halfToFloat(m_value) - halfToFloat(other.getValue())); }
331 inline Half& operator+= (const Half& other) { m_value = floatToHalf(halfToFloat(other.getValue()) + halfToFloat(m_value)); return *this; }
332 inline Half& operator*= (const Half& other) { m_value = floatToHalf(halfToFloat(other.getValue()) * halfToFloat(m_value)); return *this; }
333 inline Half& operator/= (const Half& other) { m_value = floatToHalf(halfToFloat(other.getValue()) / halfToFloat(m_value)); return *this; }
334 inline Half& operator-= (const Half& other) { m_value = floatToHalf(halfToFloat(other.getValue()) - halfToFloat(m_value)); return *this; }
336 inline bool operator== (const Half& other) const { return m_value == other.m_value; }
337 inline bool operator!= (const Half& other) const { return m_value != other.m_value; }
338 inline bool operator< (const Half& other) const { return halfToFloat(m_value) < halfToFloat(other.m_value); }
339 inline bool operator> (const Half& other) const { return halfToFloat(m_value) > halfToFloat(other.m_value); }
340 inline bool operator<= (const Half& other) const { return halfToFloat(m_value) <= halfToFloat(other.m_value); }
341 inline bool operator>= (const Half& other) const { return halfToFloat(m_value) >= halfToFloat(other.m_value); }
359 inline Fixed operator+ (const Fixed& other) const { return create(m_value + other.getValue()); }
360 inline Fixed operator* (const Fixed& other) const { return create(m_value * other.getValue()); }
361 inline Fixed operator/ (const Fixed& other) const { return create(m_value / other.getValue()); }
362 inline Fixed operator% (const Fixed& other) const { return create(m_value % other.getValue()); }
363 inline Fixed operator- (const Fixed& other) const { return create(m_value - other.getValue()); }
365 inline Fixed& operator+= (const Fixed& other) { m_value += other.getValue(); return *this; }
366 inline Fixed& operator*= (const Fixed& other) { m_value *= other.getValue(); return *this; }
367 inline Fixed& operator/= (const Fixed& other) { m_value /= other.getValue(); return *this; }
368 inline Fixed& operator-= (const Fixed& other) { m_value -= other.getValue(); return *this; }
370 inline bool operator== (const Fixed& other) const { return m_value == other.m_value; }
371 inline bool operator!= (const Fixed& other) const { return m_value != other.m_value; }
372 inline bool operator< (const Fixed& other) const { return m_value < other.m_value; }
373 inline bool operator> (const Fixed& other) const { return m_value > other.m_value; }
374 inline bool operator<= (const Fixed& other) const { return m_value <= other.m_value; }
375 inline bool operator>= (const Fixed& other) const { return m_value >= other.m_value; }
428 VertexArrayTest (const VertexArrayTest& other);
429 VertexArrayTest& operator= (const VertexArrayTest& other);