Lines Matching refs:operator
223 operator f32*() { return this->a; }
225 operator const f32*() const { return this->a; }
270 self_type& operator += (const self_type& rhs) { return *MTX43Add(this, this, &rhs); }
273 self_type& operator -= (const self_type& rhs) { return *MTX43Sub(this, this, &rhs); }
276 self_type& operator *= (const self_type& rhs) { return *MTX43Mult(this, this, &rhs); }
279 self_type& operator *= (f32 f) { return *MTX43Mult(this, this, f); }
282 self_type& operator /= (f32 f) { return operator*=(1.f / f); }
285 self_type operator + () const { return *this; }
288 self_type operator - () const
297 …self_type operator + (const self_type& rhs) const { MTX43 tmp; return *MTX43Add(&tmp, this, &rhs);…
300 …self_type operator - (const self_type& rhs) const { MTX43 tmp; return *MTX43Add(&tmp, this, &rhs);…
303 self_type operator * (f32 f) const { MTX43 tmp; return *MTX43Mult(&tmp, this, f); }
306 self_type operator / (f32 f) const { return *this * (1.f / f); }
324 …bool operator == (const self_type& rhs) const { return ::std::memcmp(this, &rhs, sizeof(MTX43)) ==…
327 …bool operator != (const self_type& rhs) const { return ::std::memcmp(this, &rhs, sizeof(MTX43)) !=…
339 operator UnspecifiedBoolType() const;
340 operator UnspecifiedBoolType();