Lines Matching refs:pDst
28 asm void MTX_Identity33_(register MtxFx33* pDst) in MTX_Identity33_() argument
41 asm void MTX_Copy33To43_(const register MtxFx33* pSrc, register MtxFx43* pDst) in MTX_Copy33To43_() argument
59 asm void MTX_Copy33To44_(const register MtxFx33* pSrc, register MtxFx44* pDst) in MTX_Copy33To44_() argument
82 asm void MTX_Transpose33_(const register MtxFx33* pSrc, register MtxFx33* pDst) in MTX_Transpose33_() argument
96 asm void MTX_Scale33_(register MtxFx33* pDst, register fx32 x, register fx32 y, register fx32 z) in MTX_Scale33_() argument
125 void MTX_ScaleApply33(const MtxFx33 *pSrc, MtxFx33 *pDst, fx32 x, fx32 y, fx32 z) in MTX_ScaleApply33() argument
130 SDK_NULL_ASSERT(pDst); in MTX_ScaleApply33()
133 pDst->_00 = mul64(v, pSrc->_00); in MTX_ScaleApply33()
134 pDst->_01 = mul64(v, pSrc->_01); in MTX_ScaleApply33()
135 pDst->_02 = mul64(v, pSrc->_02); in MTX_ScaleApply33()
138 pDst->_10 = mul64(v, pSrc->_10); in MTX_ScaleApply33()
139 pDst->_11 = mul64(v, pSrc->_11); in MTX_ScaleApply33()
140 pDst->_12 = mul64(v, pSrc->_12); in MTX_ScaleApply33()
143 pDst->_20 = mul64(v, pSrc->_20); in MTX_ScaleApply33()
144 pDst->_21 = mul64(v, pSrc->_21); in MTX_ScaleApply33()
145 pDst->_22 = mul64(v, pSrc->_22); in MTX_ScaleApply33()
149 asm void MTX_RotX33_(register MtxFx33 * pDst, register fx32 sinVal, register fx32 cosVal) in MTX_RotX33_() argument
170 asm void MTX_RotY33_(register MtxFx33 * pDst, register fx32 sinVal, register fx32 cosVal) in MTX_RotY33_() argument
191 asm void MTX_RotZ33_(register MtxFx33 * pDst, register fx32 sinVal, register fx32 cosVal) in MTX_RotZ33_() argument
222 void MTX_RotAxis33(MtxFx33 *pDst, const VecFx32 *vec, fx32 sinVal, fx32 cosVal) in MTX_RotAxis33() argument
227 SDK_NULL_ASSERT(pDst); in MTX_RotAxis33()
238 pDst->_00 = t01 + cosVal; in MTX_RotAxis33()
241 pDst->_11 = t01 + cosVal; in MTX_RotAxis33()
244 pDst->_22 = t01 + cosVal; in MTX_RotAxis33()
248 pDst->_01 = t01 + s2; in MTX_RotAxis33()
249 pDst->_10 = t01 - s2; in MTX_RotAxis33()
253 pDst->_02 = t01 - s2; in MTX_RotAxis33()
254 pDst->_20 = t01 + s2; in MTX_RotAxis33()
258 pDst->_12 = t01 + s2; in MTX_RotAxis33()
259 pDst->_21 = t01 - s2; in MTX_RotAxis33()
274 int MTX_Inverse33(const MtxFx33 *pSrc, MtxFx33 *pDst) in MTX_Inverse33() argument
284 SDK_NULL_ASSERT(pDst); in MTX_Inverse33()
286 if (pSrc == pDst) in MTX_Inverse33()
292 p = pDst; in MTX_Inverse33()
338 MI_Copy36B(&tmp, pDst); in MTX_Inverse33()