Lines Matching refs:rhs
129 self_type& operator += (const self_type& rhs) { (void)VEC4Add(this, this, &rhs); return *this; }
130 self_type& operator -= (const self_type& rhs) { (void)VEC4Sub(this, this, &rhs); return *this; }
131 … self_type& operator *= (const self_type& rhs) { (void)VEC4Mult(this, this, &rhs); return *this; }
138 …self_type operator + (const self_type& rhs) const { VEC4 tmp; (void)VEC4Add(&tmp, this, &rhs); ret…
139 …self_type operator - (const self_type& rhs) const { VEC4 tmp; (void)VEC4Sub(&tmp, this, &rhs); ret…
149 self_type& Lerp(const VEC4& lhs, const VEC4& rhs, f32 t) in Lerp()
151 return *VEC4Lerp(this, &lhs, &rhs, t); in Lerp()
201 self_type& Maximize(const VEC4& lhs, const VEC4& rhs) in Maximize()
203 return *VEC4Maximize(this, &lhs, &rhs); in Maximize()
210 self_type& Minimize(const VEC4& lhs, const VEC4& rhs) in Minimize()
212 return *VEC4Minimize(this, &lhs, &rhs); in Minimize()
231 …bool operator == (const self_type& rhs) const { return x == rhs.x && y == rhs.y && z == rhs.z && w…
234 …bool operator != (const self_type& rhs) const { return x != rhs.x || y != rhs.y || z != rhs.z || w…
250 operator * (f32 f, const VEC4& rhs) { VEC4 tmp; (void)VEC4Scale(&tmp, &rhs, f); return tmp; }