Lines Matching refs:pDst
36 SDK_DECL_INLINE void MTX_Identity22(MtxFx22 *pDst);
37 SDK_DECL_INLINE void MTX_Copy22(const MtxFx22 *pSrc, MtxFx22 *pDst);
38 SDK_DECL_INLINE void MTX_Transpose22(const MtxFx22 *pSrc, MtxFx22 *pDst);
39 SDK_DECL_INLINE void MTX_Rot22(MtxFx22 *pDst, fx32 sinVal, fx32 cosVal);
40 int MTX_Inverse22(const MtxFx22 *pSrc, MtxFx22 *pDst);
42 void MTX_ScaleApply22(const MtxFx22 *pSrc, MtxFx22 *pDst, fx32 x, fx32 y);
44 void MTX_Identity22_(register MtxFx22 *pDst);
45 void MTX_Transpose22_(const register MtxFx22 *pSrc, register MtxFx22 *pDst);
46 void MTX_Scale22_(register MtxFx22 *pDst, register fx32 x, register fx32 y);
47 void MTX_Rot22_(register MtxFx22 *pDst, register fx32 sinVal, register fx32 cosVal);
62 SDK_INLINE void MTX_Identity22(MtxFx22 *pDst) in MTX_Identity22() argument
64 SDK_NULL_ASSERT(pDst); in MTX_Identity22()
65 MTX_Identity22_(pDst); in MTX_Identity22()
78 SDK_INLINE void MTX_Copy22(const MtxFx22 *pSrc, MtxFx22 *pDst) in MTX_Copy22() argument
81 SDK_NULL_ASSERT(pDst); 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
99 SDK_NULL_ASSERT(pDst); in MTX_Transpose22()
100 MTX_Transpose22_(pSrc, pDst); in MTX_Transpose22()
115 SDK_INLINE void MTX_Scale22(MtxFx22 *pDst, fx32 x, fx32 y) in MTX_Scale22() argument
117 SDK_NULL_ASSERT(pDst); in MTX_Scale22()
118 MTX_Scale22_(pDst, x, y); in MTX_Scale22()
133 SDK_INLINE void MTX_Rot22(MtxFx22 *pDst, fx32 sinVal, fx32 cosVal) in MTX_Rot22() argument
135 SDK_NULL_ASSERT(pDst); in MTX_Rot22()
136 MTX_Rot22_(pDst, sinVal, cosVal); in MTX_Rot22()