Searched refs:MTX44Mult (Results 1 – 2 of 2) sorted by relevance
| /CTR-SDK-0.14.4/include/nn/math/ |
| D | math_Matrix44.h | 63 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-0.14.4/include/nn/math/inline/ |
| D | math_Matrix44.ipp | 292 MTX44Mult(pOut, p1, pSrc);
|