Lines Matching refs:pDst

36 SDK_DECL_INLINE void MTX_Identity43(MtxFx43 *pDst);
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);
42 SDK_DECL_INLINE void MTX_Scale43(MtxFx43 *pDst, fx32 x, fx32 y, fx32 z);
43 void MTX_ScaleApply43(const MtxFx43 *pSrc, MtxFx43 *pDst, fx32 x, fx32 y, fx32 z);
44 SDK_DECL_INLINE void MTX_RotX43(MtxFx43 *pDst, fx32 sinVal, fx32 cosVal);
45 SDK_DECL_INLINE void MTX_RotY43(MtxFx43 *pDst, fx32 sinVal, fx32 cosVal);
46 SDK_DECL_INLINE void MTX_RotZ43(MtxFx43 *pDst, fx32 sinVal, fx32 cosVal);
47 void MTX_RotAxis43(MtxFx43 *pDst, const VecFx32 *vec, fx32 sinVal, fx32 cosVal);
48 int MTX_Inverse43(const MtxFx43 *pSrc, MtxFx43 *pDst);
53 void MTX_Identity43_(register MtxFx43 *pDst);
54 void MTX_Copy43To44_(register const MtxFx43 *pSrc, register MtxFx44 *pDst);
55 void MTX_Transpose43_(register const MtxFx43 *pSrc, register MtxFx43 *pDst);
56 void MTX_Scale43_(register MtxFx43 *pDst, register fx32 x, register fx32 y, register fx32 z);
57 void MTX_RotX43_(register MtxFx43 *pDst, register fx32 sinVal, register fx32 cosVal);
58 void MTX_RotY43_(register MtxFx43 *pDst, register fx32 sinVal, register fx32 cosVal);
59 void MTX_RotZ43_(register MtxFx43 *pDst, register fx32 sinVal, register fx32 cosVal);
74 SDK_INLINE void MTX_Identity43(MtxFx43 *pDst) in MTX_Identity43() argument
76 SDK_NULL_ASSERT(pDst); in MTX_Identity43()
77 MTX_Identity43_(pDst); in MTX_Identity43()
90 SDK_INLINE void MTX_Copy43(const MtxFx43 *pSrc, MtxFx43 *pDst) in MTX_Copy43() argument
93 SDK_NULL_ASSERT(pDst); 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
110 SDK_NULL_ASSERT(pDst); 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
127 SDK_NULL_ASSERT(pDst); 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
146 SDK_NULL_ASSERT(pDst); in MTX_Transpose43()
148 MTX_Transpose43_(pSrc, pDst); in MTX_Transpose43()
163 SDK_INLINE void MTX_Scale43(MtxFx43 *pDst, fx32 x, fx32 y, fx32 z) in MTX_Scale43() argument
165 SDK_NULL_ASSERT(pDst); in MTX_Scale43()
166 MTX_Scale43_(pDst, x, y, z); in MTX_Scale43()
180 SDK_INLINE void MTX_RotX43(MtxFx43 *pDst, fx32 sinVal, fx32 cosVal) in MTX_RotX43() argument
182 SDK_NULL_ASSERT(pDst); in MTX_RotX43()
183 MTX_RotX43_(pDst, sinVal, cosVal); in MTX_RotX43()
197 SDK_INLINE void MTX_RotY43(MtxFx43 *pDst, fx32 sinVal, fx32 cosVal) in MTX_RotY43() argument
199 SDK_NULL_ASSERT(pDst); in MTX_RotY43()
200 MTX_RotY43_(pDst, sinVal, cosVal); in MTX_RotY43()
214 SDK_INLINE void MTX_RotZ43(MtxFx43 *pDst, fx32 sinVal, fx32 cosVal) in MTX_RotZ43() argument
216 SDK_NULL_ASSERT(pDst); in MTX_RotZ43()
217 MTX_RotZ43_(pDst, sinVal, cosVal); in MTX_RotZ43()