Lines Matching refs:pDst
37 SDK_DECL_INLINE void MTX_Identity33(MtxFx33 *pDst);
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);
42 SDK_DECL_INLINE void MTX_Scale33(MtxFx33 *pDst, fx32 x, fx32 y, fx32 z);
43 void MTX_ScaleApply33(const MtxFx33 *pSrc, MtxFx33 *pDst, fx32 x, fx32 y, fx32 z);
44 SDK_DECL_INLINE void MTX_RotX33(MtxFx33 *pDst, fx32 sinVal, fx32 cosVal);
45 SDK_DECL_INLINE void MTX_RotY33(MtxFx33 *pDst, fx32 sinVal, fx32 cosVal);
46 SDK_DECL_INLINE void MTX_RotZ33(MtxFx33 *pDst, fx32 sinVal, fx32 cosVal);
47 void MTX_RotAxis33(MtxFx33 *pDst, const VecFx32 *vec, fx32 sinVal, fx32 cosVal);
48 int MTX_Inverse33(const MtxFx33 *pSrc, MtxFx33 *pDst);
52 void MTX_Identity33_(register 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);
56 void MTX_Scale33_(register MtxFx33 *pDst, register fx32 x, register fx32 y, register fx32 z);
57 void MTX_RotX33_(register MtxFx33 *pDst, register fx32 sinVal, register fx32 cosVal);
58 void MTX_RotY33_(register MtxFx33 *pDst, register fx32 sinVal, register fx32 cosVal);
59 void MTX_RotZ33_(register MtxFx33 *pDst, register fx32 sinVal, register fx32 cosVal);
74 SDK_INLINE void MTX_Identity33(MtxFx33 *pDst) in MTX_Identity33() argument
76 SDK_NULL_ASSERT(pDst); in MTX_Identity33()
77 MTX_Identity33_(pDst); in MTX_Identity33()
90 SDK_INLINE void MTX_Copy33(const MtxFx33 *pSrc, MtxFx33 *pDst) in MTX_Copy33() argument
93 SDK_NULL_ASSERT(pDst); 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
110 SDK_NULL_ASSERT(pDst); 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
128 SDK_NULL_ASSERT(pDst); 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
146 SDK_NULL_ASSERT(pDst); in MTX_Transpose33()
147 MTX_Transpose33_(pSrc, pDst); in MTX_Transpose33()
162 SDK_INLINE void MTX_Scale33(MtxFx33 *pDst, fx32 x, fx32 y, fx32 z) in MTX_Scale33() argument
164 SDK_NULL_ASSERT(pDst); in MTX_Scale33()
165 MTX_Scale33_(pDst, x, y, z); in MTX_Scale33()
179 SDK_INLINE void MTX_RotX33(MtxFx33 *pDst, fx32 sinVal, fx32 cosVal) in MTX_RotX33() argument
181 SDK_NULL_ASSERT(pDst); in MTX_RotX33()
182 MTX_RotX33_(pDst, sinVal, cosVal); in MTX_RotX33()
196 SDK_INLINE void MTX_RotY33(MtxFx33 *pDst, fx32 sinVal, fx32 cosVal) in MTX_RotY33() argument
198 SDK_NULL_ASSERT(pDst); in MTX_RotY33()
199 MTX_RotY33_(pDst, sinVal, cosVal); in MTX_RotY33()
213 SDK_INLINE void MTX_RotZ33(MtxFx33 *pDst, fx32 sinVal, fx32 cosVal) in MTX_RotZ33() argument
215 SDK_NULL_ASSERT(pDst); in MTX_RotZ33()
216 MTX_RotZ33_(pDst, sinVal, cosVal); in MTX_RotZ33()