Lines Matching refs:this
116 operator f32*() { return this->a; }
118 operator const f32*() const { return this->a; }
124 return *reinterpret_cast<VEC2*>(&this->v[index]); in GetRow()
131 return *reinterpret_cast<const VEC2*>(&this->v[index]); in GetRow()
139 column.x = this->m[0][index]; in GetColumn()
140 column.y = this->m[1][index]; in GetColumn()
148 this->m[0][index] = column.x; in SetColumn()
149 this->m[1][index] = column.y; in SetColumn()
158 self_type& SetupIdentity() { return *MTX22Identity(this); } in SetupIdentity()
167 …bool operator == (const self_type& rhs) const { return ::std::memcmp(this, &rhs, sizeof(MTX22)) ==…
170 …bool operator != (const self_type& rhs) const { return ::std::memcmp(this, &rhs, sizeof(MTX22)) !=…
173 bool IsIdentity() const { return MTX22IsIdentity(this); } in IsIdentity()
190 MTX22::MTX22(const f32* p) { MTX22Copy(this, reinterpret_cast<const MTX22*>(p)); } in MTX22()
193 MTX22::MTX22(const MTX23& rhs) { MTX23ToMTX22(this, &rhs); } in MTX22()