Lines Matching refs:pDst

26 asm void MTX_Identity43_(register MtxFx43* pDst)  in MTX_Identity43_()  argument
41 asm void MTX_Copy43To44_(register const MtxFx43* pSrc, register MtxFx44* pDst) in MTX_Copy43To44_() argument
61 asm void MTX_Transpose43_(register const MtxFx43* pSrc, register MtxFx43* pDst) in MTX_Transpose43_() argument
92 void MTX_TransApply43(const MtxFx43 *pSrc, MtxFx43 *pDst, fx32 x, fx32 y, fx32 z) in MTX_TransApply43() argument
95 SDK_NULL_ASSERT(pDst); in MTX_TransApply43()
97 if (pSrc != pDst) in MTX_TransApply43()
99 MI_Copy36B(pSrc, pDst); in MTX_TransApply43()
106 pDst->_30 = in MTX_TransApply43()
108 pDst->_31 = in MTX_TransApply43()
110 pDst->_32 = in MTX_TransApply43()
116 asm void MTX_Scale43_(register MtxFx43* pDst, register fx32 x, register fx32 y, register fx32 z) in MTX_Scale43_() argument
148 void MTX_ScaleApply43(const MtxFx43 *pSrc, MtxFx43 *pDst, fx32 x, fx32 y, fx32 z) in MTX_ScaleApply43() argument
150 MTX_ScaleApply33((const MtxFx33 *)pSrc, (MtxFx33 *)pDst, x, y, z); in MTX_ScaleApply43()
152 pDst->_30 = pSrc->_30; in MTX_ScaleApply43()
153 pDst->_31 = pSrc->_31; in MTX_ScaleApply43()
154 pDst->_32 = pSrc->_32; in MTX_ScaleApply43()
159 asm void MTX_RotX43_(register MtxFx43 * pDst, register fx32 sinVal, register fx32 cosVal) in MTX_RotX43_() argument
181 asm void MTX_RotY43_(register MtxFx43 * pDst, register fx32 sinVal, register fx32 cosVal) in MTX_RotY43_() argument
202 asm void MTX_RotZ43_(register MtxFx43 * pDst, register fx32 sinVal, register fx32 cosVal) in MTX_RotZ43_() argument
235 void MTX_RotAxis43(MtxFx43 *pDst, const VecFx32 *vec, fx32 sinVal, fx32 cosVal) in MTX_RotAxis43() argument
237 MTX_RotAxis33((MtxFx33 *)pDst, vec, sinVal, cosVal); in MTX_RotAxis43()
238 pDst->_30 = 0; in MTX_RotAxis43()
239 pDst->_31 = 0; in MTX_RotAxis43()
240 pDst->_32 = 0; in MTX_RotAxis43()
255 int MTX_Inverse43(const MtxFx43 *pSrc, MtxFx43 *pDst) in MTX_Inverse43() argument
265 SDK_NULL_ASSERT(pDst); in MTX_Inverse43()
267 if (pSrc == pDst) in MTX_Inverse43()
273 p = pDst; in MTX_Inverse43()
329 MI_Copy48B(&tmp, pDst); in MTX_Inverse43()