Lines Matching refs:pDst

37 SDK_DECL_INLINE void MTX_Identity44(MtxFx44 *pDst);
38 SDK_DECL_INLINE void MTX_Copy44To33(const MtxFx44 *pSrc, MtxFx33 *pDst);
39 SDK_DECL_INLINE void MTX_Copy44To43(const MtxFx44 *pSrc, MtxFx43 *pDst);
40 SDK_DECL_INLINE void MTX_Transpose44(const MtxFx44 *pSrc, MtxFx44 *pDst);
41 void MTX_TransApply44(const MtxFx44 *pSrc, MtxFx44 *pDst, fx32 x, fx32 y, fx32 z);
42 SDK_DECL_INLINE void MTX_Scale44(MtxFx44 *pDst, fx32 x, fx32 y, fx32 z);
43 void MTX_ScaleApply44(const MtxFx44 *pSrc, MtxFx44 *pDst, fx32 x, fx32 y, fx32 z);
44 SDK_DECL_INLINE void MTX_RotX44(MtxFx44 *pDst, fx32 sinVal, fx32 cosVal);
45 SDK_DECL_INLINE void MTX_RotY44(MtxFx44 *pDst, fx32 sinVal, fx32 cosVal);
46 SDK_DECL_INLINE void MTX_RotZ44(MtxFx44 *pDst, fx32 sinVal, fx32 cosVal);
47 void MTX_RotAxis44(MtxFx44 *pDst, const VecFx32 *vec, fx32 sinVal, fx32 cosVal);
53 void MTX_Identity44_(register MtxFx44 *pDst);
54 void MTX_Copy44To33_(register const MtxFx44 *pSrc, register MtxFx33 *pDst);
55 void MTX_Copy44To43_(register const MtxFx44 *pSrc, register MtxFx43 *pDst);
56 void MTX_Transpose44_(register const MtxFx44 *pSrc, register MtxFx44 *pDst);
57 void MTX_Scale44_(register MtxFx44 *pDst, register fx32 x, register fx32 y, register fx32 z);
58 void MTX_RotX44_(register MtxFx44 *pDst, register fx32 sinVal, register fx32 cosVal);
59 void MTX_RotY44_(register MtxFx44 *pDst, register fx32 sinVal, register fx32 cosVal);
60 void MTX_RotZ44_(register MtxFx44 *pDst, register fx32 sinVal, register fx32 cosVal);
77 SDK_INLINE void MTX_Identity44(MtxFx44 *pDst) in MTX_Identity44() argument
79 SDK_NULL_ASSERT(pDst); in MTX_Identity44()
80 MTX_Identity44_(pDst); in MTX_Identity44()
93 SDK_INLINE void MTX_Copy44(const MtxFx44 *pSrc, MtxFx44 *pDst) in MTX_Copy44() argument
96 SDK_NULL_ASSERT(pDst); in MTX_Copy44()
98 MI_Copy64B(pSrc, pDst); in MTX_Copy44()
112 SDK_INLINE void MTX_Copy44To33(const MtxFx44 *pSrc, MtxFx33 *pDst) in MTX_Copy44To33() argument
115 SDK_NULL_ASSERT(pDst); in MTX_Copy44To33()
117 MTX_Copy44To33_(pSrc, pDst); in MTX_Copy44To33()
131 SDK_INLINE void MTX_Copy44To43(const MtxFx44 *pSrc, MtxFx43 *pDst) in MTX_Copy44To43() argument
134 SDK_NULL_ASSERT(pDst); in MTX_Copy44To43()
136 MTX_Copy44To43_(pSrc, pDst); in MTX_Copy44To43()
149 SDK_INLINE void MTX_Transpose44(const MtxFx44 *pSrc, MtxFx44 *pDst) in MTX_Transpose44() argument
152 SDK_NULL_ASSERT(pDst); in MTX_Transpose44()
154 MTX_Transpose44_(pSrc, pDst); in MTX_Transpose44()
169 SDK_INLINE void MTX_Scale44(MtxFx44 *pDst, fx32 x, fx32 y, fx32 z) in MTX_Scale44() argument
171 SDK_NULL_ASSERT(pDst); in MTX_Scale44()
172 MTX_Scale44_(pDst, x, y, z); in MTX_Scale44()
186 SDK_INLINE void MTX_RotX44(MtxFx44 *pDst, fx32 sinVal, fx32 cosVal) in MTX_RotX44() argument
188 SDK_NULL_ASSERT(pDst); in MTX_RotX44()
189 MTX_RotX44_(pDst, sinVal, cosVal); in MTX_RotX44()
204 SDK_INLINE void MTX_RotY44(MtxFx44 *pDst, fx32 sinVal, fx32 cosVal) in MTX_RotY44() argument
206 SDK_NULL_ASSERT(pDst); in MTX_RotY44()
207 MTX_RotY44_(pDst, sinVal, cosVal); in MTX_RotY44()
222 SDK_INLINE void MTX_RotZ44(MtxFx44 *pDst, fx32 sinVal, fx32 cosVal) in MTX_RotZ44() argument
224 SDK_NULL_ASSERT(pDst); in MTX_RotZ44()
225 MTX_RotZ44_(pDst, sinVal, cosVal); in MTX_RotZ44()