Home
last modified time | relevance | path

Searched refs:MTX44Mult (Results 1 – 2 of 2) sorted by relevance

/CTR-SDK-4.2.8-20130828/include/nn/math/
Dmath_Matrix44.h143 NN_FORCE_INLINE MTX44* MTX44Mult(MTX44* pOut, const MTX44* __restrict p1, const MTX44* __restrict p…
154 NN_FORCE_INLINE MTX44* MTX44Mult(MTX44* pOut, const MTX44* p, f32 f);
622 self_type& operator *= (const self_type& rhs) { return *MTX44Mult(this, this, &rhs); }
631 self_type& operator *= (f32 f) { return *MTX44Mult(this, this, f); }
655 self_type operator * (f32 f) const { MTX44 tmp; return *MTX44Mult(&tmp, this, f); }
867 MTX44Mult(MTX44* pOut, const MTX44* __restrict p1, const MTX44* __restrict p2) in MTX44Mult() function
883 MTX44Mult(MTX44* pOut, const MTX44* p, f32 f) in MTX44Mult() function
1154 inline MTX44* MTX44Mult(MTX44* pOut, const MTX44& m, f32 f) { return MTX44Mult( pOut, &m, f ); } in MTX44Mult() function
1155 inline MTX44* MTX44Mult(MTX44* pOut, const MTX44& m1, const MTX44& m2) { return MTX44Mult( pOut, &m… in MTX44Mult() function
/CTR-SDK-4.2.8-20130828/include/nn/math/inline/
Dmath_Matrix44.ipp144 MTX44Mult(pOut, p1, pSrc);