Lines Matching refs:operator
129 operator f32*() { return this->a; }
131 operator const f32*() const { return this->a; }
175 self_type& operator += (const self_type& rhs) { return *MTX43Add(this, this, &rhs); }
176 self_type& operator -= (const self_type& rhs) { return *MTX43Sub(this, this, &rhs); }
178 self_type& operator *= (const self_type& rhs) { return *MTX43Mult(this, this, &rhs); }
179 self_type& operator *= (f32 f) { return *MTX43Mult(this, this, f); }
180 self_type& operator /= (f32 f) { return operator*=(1.f / f); }
182 self_type operator + () const { return *this; }
183 self_type operator - () const
191 …self_type operator + (const self_type& rhs) const { MTX43 tmp; return *MTX43Add(&tmp, this, &rhs);…
192 …self_type operator - (const self_type& rhs) const { MTX43 tmp; return *MTX43Add(&tmp, this, &rhs);…
194 self_type operator * (f32 f) const { MTX43 tmp; return *MTX43Mult(&tmp, this, f); }
195 self_type operator / (f32 f) const { return *this * (1.f / f); }
213 …bool operator == (const self_type& rhs) const { return ::std::memcmp(this, &rhs, sizeof(MTX43)) ==…
216 …bool operator != (const self_type& rhs) const { return ::std::memcmp(this, &rhs, sizeof(MTX43)) !=…