Lines Matching refs:pSrc
37 SDK_DECL_INLINE void MTX_Copy22(const MtxFx22 *pSrc, MtxFx22 *pDst);
38 SDK_DECL_INLINE void MTX_Transpose22(const MtxFx22 *pSrc, MtxFx22 *pDst);
40 int MTX_Inverse22(const MtxFx22 *pSrc, MtxFx22 *pDst);
42 void MTX_ScaleApply22(const MtxFx22 *pSrc, MtxFx22 *pDst, fx32 x, fx32 y);
45 void MTX_Transpose22_(const register MtxFx22 *pSrc, register MtxFx22 *pDst);
78 SDK_INLINE void MTX_Copy22(const MtxFx22 *pSrc, MtxFx22 *pDst) in MTX_Copy22() argument
80 SDK_NULL_ASSERT(pSrc); in MTX_Copy22()
82 MI_Copy16B(pSrc, pDst); in MTX_Copy22()
96 SDK_INLINE void MTX_Transpose22(const MtxFx22 *pSrc, MtxFx22 *pDst) in MTX_Transpose22() argument
98 SDK_NULL_ASSERT(pSrc); in MTX_Transpose22()
100 MTX_Transpose22_(pSrc, pDst); in MTX_Transpose22()