Lines Matching refs:rhs
121 self_type& operator += (const self_type& rhs) { (void)VEC4Add(this, this, &rhs); return *this; }
122 self_type& operator -= (const self_type& rhs) { (void)VEC4Sub(this, this, &rhs); return *this; }
123 … self_type& operator *= (const self_type& rhs) { (void)VEC4Mult(this, this, &rhs); return *this; }
130 …self_type operator + (const self_type& rhs) const { VEC4 tmp; (void)VEC4Add(&tmp, this, &rhs); ret…
131 …self_type operator - (const self_type& rhs) const { VEC4 tmp; (void)VEC4Sub(&tmp, this, &rhs); ret…
141 self_type& Lerp(const VEC4& lhs, const VEC4& rhs, f32 t) in Lerp()
143 return *VEC4Lerp(this, &lhs, &rhs, t); in Lerp()
193 self_type& Maximize(const VEC4& lhs, const VEC4& rhs) in Maximize()
195 return *VEC4Maximize(this, &lhs, &rhs); in Maximize()
202 self_type& Minimize(const VEC4& lhs, const VEC4& rhs) in Minimize()
204 return *VEC4Minimize(this, &lhs, &rhs); in Minimize()
223 …bool operator == (const self_type& rhs) const { return x == rhs.x && y == rhs.y && z == rhs.z && w…
226 …bool operator != (const self_type& rhs) const { return x != rhs.x || y != rhs.y || z != rhs.z || w…
242 operator * (f32 f, const VEC4& rhs) { VEC4 tmp; (void)VEC4Scale(&tmp, &rhs, f); return tmp; }