Lines Matching refs:pSrc
38 SDK_DECL_INLINE void MTX_Copy33(const MtxFx33 *pSrc, MtxFx33 *pDst);
39 SDK_DECL_INLINE void MTX_Copy33To43(const MtxFx33 *pSrc, MtxFx43 *pDst);
40 SDK_DECL_INLINE void MTX_Copy33To44(const MtxFx33 *pSrc, MtxFx44 *pDst);
41 SDK_DECL_INLINE void MTX_Transpose33(const MtxFx33 *pSrc, MtxFx33 *pDst);
43 void MTX_ScaleApply33(const MtxFx33 *pSrc, MtxFx33 *pDst, fx32 x, fx32 y, fx32 z);
48 int MTX_Inverse33(const MtxFx33 *pSrc, MtxFx33 *pDst);
53 void MTX_Copy33To43_(const register MtxFx33 *pSrc, register MtxFx43 *pDst);
54 void MTX_Copy33To44_(const register MtxFx33 *pSrc, register MtxFx44 *pDst);
55 void MTX_Transpose33_(const register MtxFx33 *pSrc, register MtxFx33 *pDst);
90 SDK_INLINE void MTX_Copy33(const MtxFx33 *pSrc, MtxFx33 *pDst) in MTX_Copy33() argument
92 SDK_NULL_ASSERT(pSrc); in MTX_Copy33()
94 MI_Copy36B(pSrc, pDst); in MTX_Copy33()
107 SDK_INLINE void MTX_Copy33To43(const MtxFx33 *pSrc, MtxFx43 *pDst) in MTX_Copy33To43() argument
109 SDK_NULL_ASSERT(pSrc); in MTX_Copy33To43()
111 MTX_Copy33To43_(pSrc, pDst); in MTX_Copy33To43()
125 SDK_INLINE void MTX_Copy33To44(const MtxFx33 *pSrc, MtxFx44 *pDst) in MTX_Copy33To44() argument
127 SDK_NULL_ASSERT(pSrc); in MTX_Copy33To44()
129 MTX_Copy33To44_(pSrc, pDst); in MTX_Copy33To44()
143 SDK_INLINE void MTX_Transpose33(const MtxFx33 *pSrc, MtxFx33 *pDst) in MTX_Transpose33() argument
145 SDK_NULL_ASSERT(pSrc); in MTX_Transpose33()
147 MTX_Transpose33_(pSrc, pDst); in MTX_Transpose33()