Lines Matching refs:operator
122 operator f32*() { return this->a; }
125 operator const f32*() const { return this->a; }
173 self_type& operator += (const self_type& rhs) { return *MTX23Add(this, this, &rhs); }
174 self_type& operator -= (const self_type& rhs) { return *MTX23Sub(this, this, &rhs); }
176 self_type& operator *= (f32 f) { return *MTX23Mult(this, this, f); }
177 self_type& operator /= (f32 f) { return operator*=(1.f / f); }
179 self_type operator + () const { return *this; }
180 self_type operator - () const
186 …self_type operator + (const self_type& rhs) const { MTX23 tmp; return *MTX23Add(&tmp, this, &rhs);…
187 …self_type operator - (const self_type& rhs) const { MTX23 tmp; return *MTX23Sub(&tmp, this, &rhs);…
189 self_type operator * (f32 f) const { MTX23 tmp; return *MTX23Mult(&tmp, this, f); }
190 self_type operator / (f32 f) const { return *this * (1.f / f); }
245 …bool operator == (const self_type& rhs) const { return ::std::memcmp(this, &rhs, sizeof(MTX23)) ==…
248 …bool operator != (const self_type& rhs) const { return ::std::memcmp(this, &rhs, sizeof(MTX23)) !=…