Home
last modified time | relevance | path

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

/CTR-SDK-1.0.0/CTR_SDK/include/nn/math/
Dmath_Matrix44.h63 NN_MATH_INLINE MTX44* MTX44Mult(MTX44* pOut, const MTX44* p, f32 f);
64 NN_MATH_INLINE MTX44* MTX44Mult(MTX44* pOut, const MTX44* p1, const MTX44* p2);
92 NN_FORCE_INLINE MTX44* MTX44Mult(MTX44* pOut, const MTX44* __restrict p1, const MTX44* __restrict p…
93 NN_FORCE_INLINE MTX44* MTX44Mult(MTX44* pOut, const MTX44* p, f32 f);
364 self_type& operator *= (const self_type& rhs) { return *MTX44Mult(this, this, &rhs); }
369 self_type& operator *= (f32 f) { return *MTX44Mult(this, this, f); }
384 self_type operator * (f32 f) const { MTX44 tmp; return *MTX44Mult(&tmp, this, f); }
631 MTX44Mult(MTX44* pOut, const MTX44* __restrict p1, const MTX44* __restrict p2) in MTX44Mult() function
656 MTX44Mult(MTX44* pOut, const MTX44* p, f32 f) in MTX44Mult() function
1030 inline MTX44* MTX44Mult(MTX44* pOut, const MTX44& m, f32 f) { return MTX44Mult( pOut, &m, f ); } in MTX44Mult() function
[all …]
/CTR-SDK-1.0.0/CTR_SDK/include/nn/math/inline/
Dmath_Matrix44.ipp292 MTX44Mult(pOut, p1, pSrc);