Lines Matching refs:rhs
285 self_type& operator += (const self_type& rhs) { (void)VEC4Add(this, this, &rhs); return *this; }
288 self_type& operator -= (const self_type& rhs) { (void)VEC4Sub(this, this, &rhs); return *this; }
294 … self_type& operator *= (const self_type& rhs) { (void)VEC4Mult(this, this, &rhs); return *this; }
306 …self_type operator + (const self_type& rhs) const { VEC4 tmp; (void)VEC4Add(&tmp, this, &rhs); ret…
309 …self_type operator - (const self_type& rhs) const { VEC4 tmp; (void)VEC4Sub(&tmp, this, &rhs); ret…
323 self_type& Lerp(const VEC4& lhs, const VEC4& rhs, f32 t) in Lerp() argument
325 return *VEC4Lerp(this, &lhs, &rhs, t); in Lerp()
375 self_type& Maximize(const VEC4& lhs, const VEC4& rhs) in Maximize() argument
377 return *VEC4Maximize(this, &lhs, &rhs); in Maximize()
384 self_type& Minimize(const VEC4& lhs, const VEC4& rhs) in Minimize() argument
386 return *VEC4Minimize(this, &lhs, &rhs); in Minimize()
405 …bool operator == (const self_type& rhs) const { return x == rhs.x && y == rhs.y && z == rhs.z && w…
408 …bool operator != (const self_type& rhs) const { return x != rhs.x || y != rhs.y || z != rhs.z || w…
435 operator * (f32 f, const VEC4& rhs) { VEC4 tmp; (void)VEC4Scale(&tmp, &rhs, f); return tmp; }