Lines Matching refs:this
181 operator f32*() { return this->a; }
183 operator const f32*() const { return this->a; }
189 return *reinterpret_cast<VEC2*>(&this->v[index]); in GetRow()
196 return *reinterpret_cast<const VEC2*>(&this->v[index]); in GetRow()
204 column.x = this->m[0][index]; in GetColumn()
205 column.y = this->m[1][index]; in GetColumn()
213 this->m[0][index] = column.x; in SetColumn()
214 this->m[1][index] = column.y; in SetColumn()
223 self_type& SetupIdentity() { return *MTX22Identity(this); } in SetupIdentity()
232 …bool operator == (const self_type& rhs) const { return ::std::memcmp(this, &rhs, sizeof(MTX22)) ==…
235 …bool operator != (const self_type& rhs) const { return ::std::memcmp(this, &rhs, sizeof(MTX22)) !=…
238 bool IsIdentity() const { return MTX22IsIdentity(this); } in IsIdentity()
266 MTX22::MTX22(const f32* p) { MTX22Copy(this, reinterpret_cast<const MTX22*>(p)); } in MTX22()
269 MTX22::MTX22(const MTX23& rhs) { MTX23ToMTX22(this, &rhs); } in MTX22()