Lines Matching refs:operator
290 operator f32*() { return this->a; }
293 operator const f32*() const { return this->a; }
342 self_type& operator += (const self_type& rhs) { return *MTX23Add(this, this, &rhs); }
345 self_type& operator -= (const self_type& rhs) { return *MTX23Sub(this, this, &rhs); }
348 self_type& operator *= (f32 f) { return *MTX23Mult(this, this, f); }
351 self_type& operator /= (f32 f) { return operator*=(1.f / f); }
354 self_type operator + () const { return *this; }
357 self_type operator - () const
364 …self_type operator + (const self_type& rhs) const { MTX23 tmp; return *MTX23Add(&tmp, this, &rhs);…
367 …self_type operator - (const self_type& rhs) const { MTX23 tmp; return *MTX23Sub(&tmp, this, &rhs);…
370 self_type operator * (f32 f) const { MTX23 tmp; return *MTX23Mult(&tmp, this, f); }
373 self_type operator / (f32 f) const { return *this * (1.f / f); }
428 …bool operator == (const self_type& rhs) const { return ::std::memcmp(this, &rhs, sizeof(MTX23)) ==…
431 …bool operator != (const self_type& rhs) const { return ::std::memcmp(this, &rhs, sizeof(MTX23)) !=…
442 operator UnspecifiedBoolType() const;
443 operator UnspecifiedBoolType();