Lines Matching refs:src

62 static inline void MAT34Copy        ( const Mat34 *src, Mat34 *dst )  in MAT34Copy()  argument
63 { MTXCopy ( (MtxPtr)(src->mtx), (MtxPtr)(dst->mtx) ); } in MAT34Copy()
127 static inline void MAT34Transpose ( const Mat34 *src, Mat34 *xPose ) in MAT34Transpose() argument
128 { MTXTranspose ( (MtxPtr)(src->mtx), (MtxPtr)(xPose->mtx) ); } in MAT34Transpose()
156 static inline u32 MAT34Inverse ( const Mat34 *src, Mat34 *inv ) in MAT34Inverse() argument
157 { return MTXInverse ( (MtxPtr)(src->mtx), (MtxPtr)(inv->mtx) ); } in MAT34Inverse()
180 static inline u32 MAT34InvXpose ( const Mat34 *src, Mat34 *invX ) in MAT34InvXpose() argument
181 { return MTXInvXpose ( (MtxPtr)(src->mtx), (MtxPtr)(invX->mtx) ); } in MAT34InvXpose()
204 static inline void MAT34MultVec ( const Mat34 *m, const Vec *src, Vec *dst ) in MAT34MultVec() argument
205 { MTXMultVec ( (MtxPtr)(m->mtx), src, dst ); } in MAT34MultVec()
249 static inline void MAT34MultVecSR ( const Mat34 *m, const Vec *src, Vec *dst ) in MAT34MultVecSR() argument
250 { MTXMultVecSR ( (MtxPtr)(m->mtx), src, dst ); } in MAT34MultVecSR()
349 static inline void MAT34TransApply ( const Mat34 *src, Mat34 *dst, f32 xT, f32 yT, f32 zT ) in MAT34TransApply() argument
350 { MTXTransApply ( (MtxPtr)(src->mtx), (MtxPtr)(dst->mtx), xT, yT, zT ); } in MAT34TransApply()
387 static inline void MAT34ScaleApply ( const Mat34 *src, Mat34 *dst, f32 xS, f32 yS, f32 zS ) in MAT34ScaleApply() argument
388 { MTXScaleApply ( (MtxPtr)(src->mtx), (MtxPtr)(dst->mtx), xS, yS, zS ); } in MAT34ScaleApply()
659 static inline void PSMAT34Reorder ( const Mat34 *src, Mat43 *dest ) in PSMAT34Reorder() argument
660 { MTXReorder ( (MtxPtr)(src->mtx), (ROMtxPtr)(dest->mtx) ); } in PSMAT34Reorder()