Lines Matching refs:pDst

30 asm void MTX_Identity44_(register MtxFx44* pDst)  in MTX_Identity44_()  argument
46 asm void MTX_Copy44To33_(register const MtxFx44* pSrc, register MtxFx33* pDst) in MTX_Copy44To33_() argument
63 asm void MTX_Copy44To43_(register const MtxFx44* pSrc, register MtxFx43* pDst) in MTX_Copy44To43_() argument
97 void MTX_TransApply44(const MtxFx44 *pSrc, MtxFx44 *pDst, fx32 x, fx32 y, fx32 z) in MTX_TransApply44() argument
100 SDK_NULL_ASSERT(pDst); in MTX_TransApply44()
102 if (pSrc != pDst) in MTX_TransApply44()
104 MI_Copy48B(pSrc, pDst); in MTX_TransApply44()
111 pDst->_30 = in MTX_TransApply44()
113 pDst->_31 = in MTX_TransApply44()
115 pDst->_32 = in MTX_TransApply44()
117 pDst->_33 = in MTX_TransApply44()
122 asm void MTX_Transpose44_(register const MtxFx44* pSrc, register MtxFx44* pDst) in MTX_Transpose44_() argument
145 asm void MTX_Scale44_(register MtxFx44 * pDst, register fx32 x, register fx32 y, register fx32 z) in MTX_Scale44_() argument
182 void MTX_ScaleApply44(const MtxFx44 *pSrc, MtxFx44 *pDst, fx32 x, fx32 y, fx32 z) in MTX_ScaleApply44() argument
187 SDK_NULL_ASSERT(pDst); in MTX_ScaleApply44()
190 pDst->_00 = mul64(v, pSrc->_00); in MTX_ScaleApply44()
191 pDst->_01 = mul64(v, pSrc->_01); in MTX_ScaleApply44()
192 pDst->_02 = mul64(v, pSrc->_02); in MTX_ScaleApply44()
193 pDst->_03 = mul64(v, pSrc->_03); in MTX_ScaleApply44()
196 pDst->_10 = mul64(v, pSrc->_10); in MTX_ScaleApply44()
197 pDst->_11 = mul64(v, pSrc->_11); in MTX_ScaleApply44()
198 pDst->_12 = mul64(v, pSrc->_12); in MTX_ScaleApply44()
199 pDst->_13 = mul64(v, pSrc->_13); in MTX_ScaleApply44()
202 pDst->_20 = mul64(v, pSrc->_20); in MTX_ScaleApply44()
203 pDst->_21 = mul64(v, pSrc->_21); in MTX_ScaleApply44()
204 pDst->_22 = mul64(v, pSrc->_22); in MTX_ScaleApply44()
205 pDst->_23 = mul64(v, pSrc->_23); in MTX_ScaleApply44()
207 if (pSrc != pDst) in MTX_ScaleApply44()
212 pDst->_30 = t1; in MTX_ScaleApply44()
213 pDst->_31 = t2; in MTX_ScaleApply44()
217 pDst->_32 = t1; in MTX_ScaleApply44()
218 pDst->_33 = t2; in MTX_ScaleApply44()
223 asm void MTX_RotX44_(register MtxFx44 * pDst, register fx32 sinVal, register fx32 cosVal) in MTX_RotX44_() argument
251 asm void MTX_RotY44_(register MtxFx44 * pDst, register fx32 sinVal, register fx32 cosVal) in MTX_RotY44_() argument
278 asm void MTX_RotZ44_(register MtxFx44 * pDst, register fx32 sinVal, register fx32 cosVal) in MTX_RotZ44_() argument
317 void MTX_RotAxis44(MtxFx44 *pDst, const VecFx32 *vec, fx32 sinVal, fx32 cosVal) in MTX_RotAxis44() argument
322 SDK_NULL_ASSERT(pDst); in MTX_RotAxis44()
333 pDst->_00 = t01 + cosVal; in MTX_RotAxis44()
336 pDst->_11 = t01 + cosVal; in MTX_RotAxis44()
339 pDst->_22 = t01 + cosVal; in MTX_RotAxis44()
343 pDst->_01 = t01 + s2; in MTX_RotAxis44()
344 pDst->_10 = t01 - s2; in MTX_RotAxis44()
348 pDst->_02 = t01 - s2; in MTX_RotAxis44()
349 pDst->_20 = t01 + s2; in MTX_RotAxis44()
353 pDst->_12 = t01 + s2; in MTX_RotAxis44()
354 pDst->_21 = t01 - s2; in MTX_RotAxis44()
356 pDst->_03 = pDst->_13 = pDst->_23 = pDst->_30 = pDst->_31 = pDst->_32 = 0; in MTX_RotAxis44()
357 pDst->_33 = FX32_ONE; in MTX_RotAxis44()