| /CafeSDK-2.12.13/system/src/lib/demo/headers/cafe/demo/demowin/ |
| D | demowin_helpers.h | 48 char* strcat_s(char (&dest)[len], const char* src) in strcat_s() 55 char* strcpy_s(char (&dest)[len], const char* src) in strcpy_s() 62 int sprintf_s(char (&dest)[len], const char* src, ...) in sprintf_s() 78 int vsprintf_s(char (&dest)[len], const char* src, va_list list) in vsprintf_s()
|
| /CafeSDK-2.12.13/system/include/cafe/demo/demowin/ |
| D | demowin_helpers.h | 48 char* strcat_s(char (&dest)[len], const char* src) in strcat_s() 55 char* strcpy_s(char (&dest)[len], const char* src) in strcpy_s() 62 int sprintf_s(char (&dest)[len], const char* src, ...) in sprintf_s() 78 int vsprintf_s(char (&dest)[len], const char* src, va_list list) in vsprintf_s()
|
| /CafeSDK-2.12.13/system/src/lib/mtx/headers/cafe/mtx/ |
| D | mat44.h | 64 static inline void MAT44Copy ( const Mat44 *src, Mat44 *dst ) in MAT44Copy() 104 static inline void MAT44Transpose ( const Mat44 *src, Mat44 *xPose ) in MAT44Transpose() 123 static inline u32 MAT44Inverse ( const Mat44 *src, Mat44 *inv ) in MAT44Inverse() 165 static inline void MAT44TransApply ( const Mat44 *src, Mat44 *dst, f32 xT, f32 yT, f32 zT ) in MAT44TransApply() 203 static inline void MAT44ScaleApply ( const Mat44 *src, Mat44 *dst, f32 xS, f32 yS, f32 zS ) in MAT44ScaleApply() 283 static inline void MAT44MultVec ( const Mat44 *m, const Vec *src, Vec *dst ) in MAT44MultVec() 328 static inline void MAT44MultVecSR ( const Mat44 *m, const Vec *src, Vec *dst ) in MAT44MultVecSR() 375 static inline void MAT34To44( const Mat34 *src, Mat44 *dst ) in MAT34To44()
|
| D | matVec.h | 62 static inline void MAT34Copy ( const Mat34 *src, Mat34 *dst ) in MAT34Copy() 127 static inline void MAT34Transpose ( const Mat34 *src, Mat34 *xPose ) in MAT34Transpose() 156 static inline u32 MAT34Inverse ( const Mat34 *src, Mat34 *inv ) in MAT34Inverse() 180 static inline u32 MAT34InvXpose ( const Mat34 *src, Mat34 *invX ) in MAT34InvXpose() 204 static inline void MAT34MultVec ( const Mat34 *m, const Vec *src, Vec *dst ) in MAT34MultVec() 249 static inline void MAT34MultVecSR ( const Mat34 *m, const Vec *src, Vec *dst ) in MAT34MultVecSR() 349 static inline void MAT34TransApply ( const Mat34 *src, Mat34 *dst, f32 xT, f32 yT, f32 zT ) in MAT34TransApply() 387 static inline void MAT34ScaleApply ( const Mat34 *src, Mat34 *dst, f32 xS, f32 yS, f32 zS ) in MAT34ScaleApply() 659 static inline void PSMAT34Reorder ( const Mat34 *src, Mat43 *dest ) in PSMAT34Reorder()
|
| /CafeSDK-2.12.13/system/include/cafe/mtx/ |
| D | mat44.h | 64 static inline void MAT44Copy ( const Mat44 *src, Mat44 *dst ) in MAT44Copy() 104 static inline void MAT44Transpose ( const Mat44 *src, Mat44 *xPose ) in MAT44Transpose() 123 static inline u32 MAT44Inverse ( const Mat44 *src, Mat44 *inv ) in MAT44Inverse() 165 static inline void MAT44TransApply ( const Mat44 *src, Mat44 *dst, f32 xT, f32 yT, f32 zT ) in MAT44TransApply() 203 static inline void MAT44ScaleApply ( const Mat44 *src, Mat44 *dst, f32 xS, f32 yS, f32 zS ) in MAT44ScaleApply() 283 static inline void MAT44MultVec ( const Mat44 *m, const Vec *src, Vec *dst ) in MAT44MultVec() 328 static inline void MAT44MultVecSR ( const Mat44 *m, const Vec *src, Vec *dst ) in MAT44MultVecSR() 375 static inline void MAT34To44( const Mat34 *src, Mat44 *dst ) in MAT34To44()
|
| D | matVec.h | 62 static inline void MAT34Copy ( const Mat34 *src, Mat34 *dst ) in MAT34Copy() 127 static inline void MAT34Transpose ( const Mat34 *src, Mat34 *xPose ) in MAT34Transpose() 156 static inline u32 MAT34Inverse ( const Mat34 *src, Mat34 *inv ) in MAT34Inverse() 180 static inline u32 MAT34InvXpose ( const Mat34 *src, Mat34 *invX ) in MAT34InvXpose() 204 static inline void MAT34MultVec ( const Mat34 *m, const Vec *src, Vec *dst ) in MAT34MultVec() 249 static inline void MAT34MultVecSR ( const Mat34 *m, const Vec *src, Vec *dst ) in MAT34MultVecSR() 349 static inline void MAT34TransApply ( const Mat34 *src, Mat34 *dst, f32 xT, f32 yT, f32 zT ) in MAT34TransApply() 387 static inline void MAT34ScaleApply ( const Mat34 *src, Mat34 *dst, f32 xS, f32 yS, f32 zS ) in MAT34ScaleApply() 659 static inline void PSMAT34Reorder ( const Mat34 *src, Mat43 *dest ) in PSMAT34Reorder()
|
| /CafeSDK-2.12.13/system/src/lib/demo/demowin/ |
| D | demowin_helpers.cpp | 62 char* strcat_s(char* dest, int len, const char* src) in strcat_s() 74 char* strcpy_s(char* dest, int len, const char* src) in strcpy_s() 86 int sprintf_s(char* dest, int len, const char* src, ...) in sprintf_s() 101 int vsprintf_s(char* dest, int len, const char* src, va_list list) in vsprintf_s()
|
| /CafeSDK-2.12.13/system/src/lib/mtx/ |
| D | mtx44Vec_asm.s | 28 #define src r4 macro 167 #define src r4 macro
|
| D | mtx44Vec.c | 47 void C_MTX44MultVec ( MTX_CONST Mtx44 m, const Vec *src, Vec *dst ) in C_MTX44MultVec() 75 void PSMTX44MultVec ( MTX_CONST Mtx44 m, const Vec *src, Vec *dst ) in PSMTX44MultVec() 274 void C_MTX44MultVecSR ( MTX_CONST Mtx44 m, const Vec *src, Vec *dst ) in C_MTX44MultVecSR() 299 void PSMTX44MultVecSR ( MTX_CONST Mtx44 m, const Vec *src, Vec *dst ) in PSMTX44MultVecSR()
|
| D | mtx44_asm.s | 63 #define src r3 macro 95 #define src r3 macro 411 #define src r3 macro 501 #define src r3 macro 696 #define src r3 macro
|
| D | mtx44.c | 303 void C_MTX44Copy( MTX_CONST Mtx44 src, Mtx44 dst ) in C_MTX44Copy() 325 void PSMTX44Copy( MTX_CONST Mtx44 src, Mtx44 dst ) in PSMTX44Copy() 745 void C_MTX44Transpose ( MTX_CONST Mtx44 src, Mtx44 xPose ) in C_MTX44Transpose() 780 void PSMTX44Transpose ( MTX_CONST Mtx44 src, Mtx44 xPose ) in PSMTX44Transpose() 877 u32 C_MTX44Inverse( MTX_CONST Mtx44 src, Mtx44 inv ) in C_MTX44Inverse() 1026 void C_MTX44TransApply ( MTX_CONST Mtx44 src, Mtx44 dst, f32 xT, f32 yT, f32 zT ) in C_MTX44TransApply() 1051 void PSMTX44TransApply ( MTX_CONST Mtx44 src, Mtx44 dst, f32 xT, f32 yT, f32 zT ) in PSMTX44TransApply() 1186 void C_MTX44ScaleApply ( MTX_CONST Mtx44 src, Mtx44 dst, f32 xS, f32 yS, f32 zS ) in C_MTX44ScaleApply() 1211 void PSMTX44ScaleApply ( MTX_CONST Mtx44 src, Mtx44 dst, f32 xS, f32 yS, f32 zS ) in PSMTX44ScaleApply() 1822 void C_MTX34To44 ( MTX_CONST Mtx src, Mtx44 dst) in C_MTX34To44() [all …]
|
| D | mtx.c | 107 void C_MTXCopy ( MTX_CONST Mtx src, Mtx dst ) in C_MTXCopy() 128 void PSMTXCopy(MTX_CONST Mtx src, Mtx dst ) in PSMTXCopy() 441 void C_MTXTranspose ( MTX_CONST Mtx src, Mtx xPose ) in C_MTXTranspose() 475 void PSMTXTranspose ( MTX_CONST Mtx src, Mtx xPose ) in PSMTXTranspose() 559 u32 C_MTXInverse ( MTX_CONST Mtx src, Mtx inv ) in C_MTXInverse() 628 u32 PSMTXInverse ( MTX_CONST Mtx src, Mtx inv ) in PSMTXInverse() 865 u32 C_MTXInvXpose ( MTX_CONST Mtx src, Mtx invX ) in C_MTXInvXpose() 934 u32 PSMTXInvXpose ( MTX_CONST Mtx src, Mtx invX ) in PSMTXInvXpose() 1687 void C_MTXTransApply ( MTX_CONST Mtx src, Mtx dst, f32 xT, f32 yT, f32 zT ) in C_MTXTransApply() 1710 void PSMTXTransApply( Mtx src, Mtx dst, f32 xT, f32 yT, f32 zT ) in PSMTXTransApply() [all …]
|
| D | mtx_asm.s | 70 #define src r3 macro 541 #define src r3 macro 595 #define src r3 macro 741 #define src r3 macro 967 #define src r3 macro 1211 #define src r3 macro 1381 #define src r3 macro
|
| D | mtxVec.c | 197 void C_VECScale ( const Vec *src, Vec *dst, f32 scale ) in C_VECScale() 216 void PSVECScale ( const Vec *src, Vec *dst, f32 scale ) in PSVECScale() 263 void C_VECNormalize ( const Vec *src, Vec *unit ) in C_VECNormalize() 739 void C_VECReflect ( const Vec *src, const Vec *normal, Vec *dst ) in C_VECReflect() 945 void C_MTXMultVec ( MTX_CONST Mtx m, const Vec *src, Vec *dst ) in C_MTXMultVec() 971 void PSMTXMultVec ( MTX_CONST Mtx m, const Vec *src, Vec *dst ) in PSMTXMultVec() 1136 void C_MTXMultVecSR ( MTX_CONST Mtx m, const Vec *src, Vec *dst ) in C_MTXMultVecSR() 1162 void PSMTXMultVecSR ( MTX_CONST Mtx m, const Vec *src, Vec *dst ) in PSMTXMultVecSR()
|
| D | mtxVec_asm.s | 299 #define src r3 macro 519 #define src r4 macro 675 #define src r4 macro
|
| D | mtxQuat.c | 485 void C_QUATNormalize( const Quaternion *src, Quaternion *unit ) in C_QUATNormalize() 516 void PSQUATNormalize( const Quaternion *src, Quaternion *unit ) in PSQUATNormalize() 604 void C_QUATInverse( const Quaternion *src, Quaternion *inv ) in C_QUATInverse() 633 void PSQUATInverse( const Quaternion *src, Quaternion *inv ) in PSQUATInverse()
|
| D | mtxQuat_asm.s | 194 #define src r3 macro 347 #define src r3 macro
|
| /CafeSDK-2.12.13/system/include/cafe/gx2/ |
| D | gx2Misc.h | 140 GX2_INLINE void GX2CopyEndianSwap(void *dst, const void *src, u32 byteLen) in GX2CopyEndianSwap() 174 u32 *src = (u32 *) ptr; in GX2EndianSwap() local 179 u32* src = (u32*)ptr; in GX2EndianSwap() local
|
| /CafeSDK-2.12.13/system/include/cafe/ |
| D | dmae.h | 196 DMAE_INLINE BOOL DMAECopyMemWait(void *dst, const void *src, u32 sizeInU32s, DMAEEndian endian) { in DMAECopyMemWait()
|
| D | axart.h | 121 u8 src; member 147 u8 src; // use one of the following member
|
| /CafeSDK-2.12.13/system/src/lib/demo/ |
| D | demoFS.c | 46 static inline char *strlcat(char *dst, const char *src, size_t len) in strlcat()
|
| /CafeSDK-2.12.13/system/src/tool/cafex/ |
| D | ExecutableClasses.cs | 1293 internal static int sync(string cfg, string src, string dst, string log) in sync()
|
| /CafeSDK-2.12.13/system/src/lib/szfile/ |
| D | 7zIn.c | 912 const Byte *src = p->FileNames.data + (p->FileNameOffsets[fileIndex] * 2); in SzArEx_GetFileNameUtf16() local
|