Lines Matching refs:pSrc
37 SDK_DECL_INLINE void MTX_Copy43(const MtxFx43 *pSrc, MtxFx43 *pDst);
38 SDK_DECL_INLINE void MTX_Copy43To33(const MtxFx43 *pSrc, MtxFx33 *pDst);
39 SDK_DECL_INLINE void MTX_Copy43To44(const MtxFx43 *pSrc, MtxFx44 *pDst);
40 SDK_DECL_INLINE void MTX_Transpose43(const MtxFx43 *pSrc, MtxFx43 *pDst);
41 void MTX_TransApply43(const MtxFx43 *pSrc, MtxFx43 *pDst, fx32 x, fx32 y, fx32 z);
43 void MTX_ScaleApply43(const MtxFx43 *pSrc, MtxFx43 *pDst, fx32 x, fx32 y, fx32 z);
48 int MTX_Inverse43(const MtxFx43 *pSrc, MtxFx43 *pDst);
54 void MTX_Copy43To44_(register const MtxFx43 *pSrc, register MtxFx44 *pDst);
55 void MTX_Transpose43_(register const MtxFx43 *pSrc, register MtxFx43 *pDst);
90 SDK_INLINE void MTX_Copy43(const MtxFx43 *pSrc, MtxFx43 *pDst) in MTX_Copy43() argument
92 SDK_NULL_ASSERT(pSrc); in MTX_Copy43()
94 MI_Copy48B(pSrc, pDst); in MTX_Copy43()
107 SDK_INLINE void MTX_Copy43To33(const MtxFx43 *pSrc, MtxFx33 *pDst) in MTX_Copy43To33() argument
109 SDK_NULL_ASSERT(pSrc); in MTX_Copy43To33()
111 MI_Copy36B(pSrc, pDst); in MTX_Copy43To33()
124 SDK_INLINE void MTX_Copy43To44(const MtxFx43 *pSrc, MtxFx44 *pDst) in MTX_Copy43To44() argument
126 SDK_NULL_ASSERT(pSrc); in MTX_Copy43To44()
128 MTX_Copy43To44_(pSrc, pDst); in MTX_Copy43To44()
143 SDK_INLINE void MTX_Transpose43(const MtxFx43 *pSrc, MtxFx43 *pDst) in MTX_Transpose43() argument
145 SDK_NULL_ASSERT(pSrc); in MTX_Transpose43()
148 MTX_Transpose43_(pSrc, pDst); in MTX_Transpose43()