| /CafeSDK-2.12.13/system/src/lib/mtx/ |
| D | mtx44.c | 70 void C_MTXFrustum ( Mtx44 m, f32 t, f32 b, f32 lf, f32 r, f32 n, f32 f ) in C_MTXFrustum() argument 75 ASSERTMSG( (t != b), MTX_FRUSTUM_2 ); in C_MTXFrustum() 85 tmp = 1.0f / (t - b); in C_MTXFrustum() 88 m[1][2] = (t + b) * tmp; in C_MTXFrustum() 200 void C_MTXOrtho ( Mtx44 m, f32 t, f32 b, f32 lf, f32 r, f32 n, f32 f ) in C_MTXOrtho() argument 205 ASSERTMSG( (t != b), MTX_ORTHO_2 ); in C_MTXOrtho() 215 tmp = 1.0f / (t - b); in C_MTXOrtho() 219 m[1][3] = -(t + b) * tmp; in C_MTXOrtho() 397 void C_MTX44Concat( MTX_CONST Mtx44 a, MTX_CONST Mtx44 b, Mtx44 ab ) in C_MTX44Concat() argument 403 ASSERTMSG( (b != 0), MTX44_CONCAT_2 ); in C_MTX44Concat() [all …]
|
| D | mtxVec.c | 53 void C_VECAdd ( const Vec *a, const Vec *b, Vec *ab ) in C_VECAdd() argument 57 ASSERTMSG( ( b != 0), VEC_ADD_2 ); in C_VECAdd() 61 ab->x = a->x + b->x; in C_VECAdd() 62 ab->y = a->y + b->y; in C_VECAdd() 63 ab->z = a->z + b->z; in C_VECAdd() 73 void PSVECAdd ( const Vec *a, const Vec *b, Vec *ab ) in PSVECAdd() argument 84 V2_XY = __PSQ_L(b, 0, 0); in PSVECAdd() 94 V2_Z = __PSQ_LX(b, 8, 1, 0); in PSVECAdd() 125 void C_VECSubtract ( const Vec *a, const Vec *b, Vec *a_b ) in C_VECSubtract() argument 129 ASSERTMSG( ( b != 0), VEC_SUBTRACT_2 ); in C_VECSubtract() [all …]
|
| D | mtx.c | 191 void C_MTXConcat ( MTX_CONST Mtx a, MTX_CONST Mtx b, Mtx ab ) in C_MTXConcat() argument 197 ASSERTMSG( (b != 0), MTX_CONCAT_2 ); in C_MTXConcat() 200 if( (ab == a) || (ab == b) ) in C_MTXConcat() 212 m[0][0] = a[0][0]*b[0][0] + a[0][1]*b[1][0] + a[0][2]*b[2][0]; in C_MTXConcat() 213 m[0][1] = a[0][0]*b[0][1] + a[0][1]*b[1][1] + a[0][2]*b[2][1]; in C_MTXConcat() 214 m[0][2] = a[0][0]*b[0][2] + a[0][1]*b[1][2] + a[0][2]*b[2][2]; in C_MTXConcat() 215 m[0][3] = a[0][0]*b[0][3] + a[0][1]*b[1][3] + a[0][2]*b[2][3] + a[0][3]; in C_MTXConcat() 217 m[1][0] = a[1][0]*b[0][0] + a[1][1]*b[1][0] + a[1][2]*b[2][0]; in C_MTXConcat() 218 m[1][1] = a[1][0]*b[0][1] + a[1][1]*b[1][1] + a[1][2]*b[2][1]; in C_MTXConcat() 219 m[1][2] = a[1][0]*b[0][2] + a[1][1]*b[1][2] + a[1][2]*b[2][2]; in C_MTXConcat() [all …]
|
| D | mtxVec_asm.s | 190 #define b r4 macro 202 psq_l v1yz, 4(b), 0, 0 // [Y1][Z1] 206 psq_l v1xy, 0(b), 0, 0 // [X1][Y1] 217 #undef b 339 #define b r4 macro 357 psq_l v1yz, 4(b), 0, 0 // [Y1][Z1] 361 psq_l v1xy, 0(b), 0, 0 // [X1][Y1] 404 #undef b 495 #define b r4 macro 500 psq_l fp3, 4(b), 0, 0; [all …]
|
| /CafeSDK-2.12.13/system/include/cafe/gfd/ |
| D | gfdConstant.h | 31 #define _GFD_CREATE_MAGIC(a,b,c,d) ((a<<0) | (b<<8) | (c<<16) | (d<<24)) argument 33 #define _GFD_CREATE_MAGIC(a,b,c,d) ((a<<24) | (b<<16) | (c<<8) | (d<<0))
|
| /CafeSDK-2.12.13/system/src/lib/gfd/headers/cafe/gfd/ |
| D | gfdConstant.h | 31 #define _GFD_CREATE_MAGIC(a,b,c,d) ((a<<0) | (b<<8) | (c<<16) | (d<<24)) argument 33 #define _GFD_CREATE_MAGIC(a,b,c,d) ((a<<24) | (b<<16) | (c<<8) | (d<<0))
|
| /CafeSDK-2.12.13/system/include/nn/config/compiler/ |
| D | ghs.h | 108 #define NN_BSYM( no ) %b##no 120 #define NN_ATTR_PRIVATE_SECTION_2(a, b) \ argument 121 __attribute__((section(#a "." #b))) 123 #define NN_ATTR_PRIVATE_SECTION_1(a, b) \ argument 124 NN_ATTR_PRIVATE_SECTION_2(a, b)
|
| /CafeSDK-2.12.13/system/include/cafe/gx2ut/ |
| D | gx2utClear.h | 95 f32 r, f32 g, f32 b, f32 a, f32 depthClear, u8 stencilClear, 139 f32 r, f32 g, f32 b, f32 a, in GX2UTClearOp() argument 161 GX2UTClearRectOp(colorBuffer, depthBuffer, r, g, b, a, in GX2UTClearOp() 222 f32 r, f32 g, f32 b, f32 a, in GX2UTClearSurfaceRect() argument 264 GX2UTClearRectOp(cbPtr, dbPtr, r, g, b, a, depthClear, stencilClear, in GX2UTClearSurfaceRect() 311 void* dstAuxPtr, u32 dstAuxSize, f32 r, f32 g, f32 b, f32 a, in GX2UTSetAndClearSurfaceRect() argument 319 dstAuxPtr, dstAuxSize, r, g, b, a, in GX2UTSetAndClearSurfaceRect() 385 f32 r, f32 g, f32 b, f32 a, in GX2UTClearSurface() argument 415 NULL, 0, r, g, b, a, in GX2UTClearSurface() 454 f32 r, f32 g, f32 b, f32 a, in GX2UTClearBuffersEx() argument [all …]
|
| /CafeSDK-2.12.13/system/src/lib/gx2ut/headers/cafe/gx2ut/ |
| D | gx2utClear.h | 95 f32 r, f32 g, f32 b, f32 a, f32 depthClear, u8 stencilClear, 139 f32 r, f32 g, f32 b, f32 a, in GX2UTClearOp() argument 161 GX2UTClearRectOp(colorBuffer, depthBuffer, r, g, b, a, in GX2UTClearOp() 222 f32 r, f32 g, f32 b, f32 a, in GX2UTClearSurfaceRect() argument 264 GX2UTClearRectOp(cbPtr, dbPtr, r, g, b, a, depthClear, stencilClear, in GX2UTClearSurfaceRect() 311 void* dstAuxPtr, u32 dstAuxSize, f32 r, f32 g, f32 b, f32 a, in GX2UTSetAndClearSurfaceRect() argument 319 dstAuxPtr, dstAuxSize, r, g, b, a, in GX2UTSetAndClearSurfaceRect() 385 f32 r, f32 g, f32 b, f32 a, in GX2UTClearSurface() argument 415 NULL, 0, r, g, b, a, in GX2UTClearSurface() 454 f32 r, f32 g, f32 b, f32 a, in GX2UTClearBuffersEx() argument [all …]
|
| /CafeSDK-2.12.13/system/include/cafe/demo/ |
| D | demoGfxTypes.h | 32 struct{ f32 r, g, b, a;} c; member 44 struct{ f32 r, g, b;} c; member 80 struct{ u32 r, g, b, a;} c; member 92 struct{ u32 r, g, b;} c; member 128 struct{ s32 r, g, b, a;} c; member 140 struct{ s32 r, g, b;} c; member 176 struct{ u16 r, g, b, a;} c; member 188 struct{ u16 r, g, b;} c; member 224 struct{ s16 r, g, b, a;} c; member 236 struct{ s16 r, g, b;} c; member [all …]
|
| /CafeSDK-2.12.13/system/src/lib/demo/headers/cafe/demo/ |
| D | demoGfxTypes.h | 32 struct{ f32 r, g, b, a;} c; member 44 struct{ f32 r, g, b;} c; member 80 struct{ u32 r, g, b, a;} c; member 92 struct{ u32 r, g, b;} c; member 128 struct{ s32 r, g, b, a;} c; member 140 struct{ s32 r, g, b;} c; member 176 struct{ u16 r, g, b, a;} c; member 188 struct{ u16 r, g, b;} c; member 224 struct{ s16 r, g, b, a;} c; member 236 struct{ s16 r, g, b;} c; member [all …]
|
| /CafeSDK-2.12.13/system/bin/tool/mastering/resources/ |
| D | default_finalization.ddf | 51 2147483647 = "title/0005001b/*", "TITLE", 0x444 76 -2147483648="title/0005001b/*", 2147483647 82 TITLE_DIR2="title/0005001b/10042400", "$(CAFE_ROOT_DOS)\data\mlc\sys\title\0005001b\10042400" 83 TITLE_DIR3="title/0005001b/1005c000", "$(CAFE_ROOT_DOS)\data\mlc\sys\title\0005001b\1005c000"
|
| /CafeSDK-2.12.13/system/src/lib/szfile/ |
| D | 7zCrc.h | 18 #define CRC_UPDATE_BYTE(crc, b) (g_CrcTable[((crc) ^ (b)) & 0xFF] ^ ((crc) >> 8)) argument
|
| D | CpuArch.c | 51 static void MyCPUID(UInt32 function, UInt32 *a, UInt32 *b, UInt32 *c, UInt32 *d) in MyCPUID() argument 69 *b = b2; in MyCPUID() 78 "=b" (*b) , in MyCPUID() 90 *b = CPUInfo[1]; in MyCPUID() 101 MyCPUID(1, &p->ver, &p->b, &p->c, &p->d); in x86cpuid_CheckAndRead()
|
| D | 7zCrcOpt.c | 8 #define CRC_UPDATE_BYTE_2(crc, b) (table[((crc) ^ (b)) & 0xFF] ^ ((crc) >> 8)) argument
|
| D | 7zCrc.c | 22 #define CRC_UPDATE_BYTE_2(crc, b) (table[((crc) ^ (b)) & 0xFF] ^ ((crc) >> 8)) argument
|
| /CafeSDK-2.12.13/system/src/lib/demo/demowin/ |
| D | demowin_helpers.cpp | 32 bool CloseEnough(float a, float b) in CloseEnough() argument 34 if (a - b > 0.1) in CloseEnough() 37 return (a - b >= -0.1); in CloseEnough()
|
| /CafeSDK-2.12.13/system/src/lib/mtx/headers/cafe/mtx/ |
| D | mtxVec.h | 184 void C_MTXConcat ( MTX_CONST Mtx a, MTX_CONST Mtx b, Mtx ab ); 286 void PSMTXConcat ( MTX_CONST Mtx a, MTX_CONST Mtx b, Mtx ab ); 765 void C_MTXFrustum ( Mtx44 m, f32 t, f32 b, f32 lf, f32 r, f32 n, f32 f ); 801 void C_MTXOrtho ( Mtx44 m, f32 t, f32 b, f32 lf, f32 r, f32 n, f32 f ); 839 void C_MTXLightFrustum ( Mtx m, f32 t, f32 b, f32 lf, f32 r, f32 n, 882 void C_MTXLightOrtho ( Mtx m, f32 t, f32 b, f32 lf, f32 r, f32 scaleS, 916 void C_VECAdd ( const Vec *a, const Vec *b, Vec *ab ); 933 void C_VECSubtract ( const Vec *a, const Vec *b, Vec *a_b ); 1014 f32 C_VECDotProduct ( const Vec *a, const Vec *b ); 1033 void C_VECCrossProduct ( const Vec *a, const Vec *b, Vec *axb ); [all …]
|
| D | matVec.h | 81 static inline void MAT34Concat ( const Mat34 *a, const Mat34 *b, Mat34 *ab ) in MAT34Concat() argument 82 { MTXConcat ( (MtxPtr)(a->mtx), (MtxPtr)(b->mtx), (MtxPtr)(ab->mtx) ); } in MAT34Concat() 527 static inline void MAT44Frustum ( Mat44 *m, f32 t, f32 b, f32 l, f32 r, f32 n, f32 f ) in MAT44Frustum() argument 528 { MTXFrustum ( (Mtx44Ptr)(m->mtx), t, b, l, r, n, f ); } in MAT44Frustum() 565 static inline void MAT44Ortho ( Mat44 *m, f32 t, f32 b, f32 l, f32 r, f32 n, f32 f ) in MAT44Ortho() argument 566 { MTXOrtho ( (Mtx44Ptr)(m->mtx), t, b, l, r, n, f ); } in MAT44Ortho() 592 static inline void MAT34LightFrustum ( Mat34 *m, f32 t, f32 b, f32 l, f32 r, f32 n, in MAT34LightFrustum() argument 595 { MTXLightFrustum( (MtxPtr)(m->mtx), t, b, l, r, n, scaleS, scaleT, transS, transT ); } in MAT34LightFrustum() 637 static inline void MAT34LightOrtho ( Mat34 *m, f32 t, f32 b, f32 l, f32 r, f32 scaleS, in MAT34LightOrtho() argument 639 { MTXLightOrtho( (MtxPtr)(m->mtx), t, b, l, r, scaleS, scaleT, transS, transT ); } in MAT34LightOrtho()
|
| /CafeSDK-2.12.13/system/include/cafe/mtx/ |
| D | mtxVec.h | 184 void C_MTXConcat ( MTX_CONST Mtx a, MTX_CONST Mtx b, Mtx ab ); 286 void PSMTXConcat ( MTX_CONST Mtx a, MTX_CONST Mtx b, Mtx ab ); 765 void C_MTXFrustum ( Mtx44 m, f32 t, f32 b, f32 lf, f32 r, f32 n, f32 f ); 801 void C_MTXOrtho ( Mtx44 m, f32 t, f32 b, f32 lf, f32 r, f32 n, f32 f ); 839 void C_MTXLightFrustum ( Mtx m, f32 t, f32 b, f32 lf, f32 r, f32 n, 882 void C_MTXLightOrtho ( Mtx m, f32 t, f32 b, f32 lf, f32 r, f32 scaleS, 916 void C_VECAdd ( const Vec *a, const Vec *b, Vec *ab ); 933 void C_VECSubtract ( const Vec *a, const Vec *b, Vec *a_b ); 1014 f32 C_VECDotProduct ( const Vec *a, const Vec *b ); 1033 void C_VECCrossProduct ( const Vec *a, const Vec *b, Vec *axb ); [all …]
|
| D | matVec.h | 81 static inline void MAT34Concat ( const Mat34 *a, const Mat34 *b, Mat34 *ab ) in MAT34Concat() argument 82 { MTXConcat ( (MtxPtr)(a->mtx), (MtxPtr)(b->mtx), (MtxPtr)(ab->mtx) ); } in MAT34Concat() 527 static inline void MAT44Frustum ( Mat44 *m, f32 t, f32 b, f32 l, f32 r, f32 n, f32 f ) in MAT44Frustum() argument 528 { MTXFrustum ( (Mtx44Ptr)(m->mtx), t, b, l, r, n, f ); } in MAT44Frustum() 565 static inline void MAT44Ortho ( Mat44 *m, f32 t, f32 b, f32 l, f32 r, f32 n, f32 f ) in MAT44Ortho() argument 566 { MTXOrtho ( (Mtx44Ptr)(m->mtx), t, b, l, r, n, f ); } in MAT44Ortho() 592 static inline void MAT34LightFrustum ( Mat34 *m, f32 t, f32 b, f32 l, f32 r, f32 n, in MAT34LightFrustum() argument 595 { MTXLightFrustum( (MtxPtr)(m->mtx), t, b, l, r, n, scaleS, scaleT, transS, transT ); } in MAT34LightFrustum() 637 static inline void MAT34LightOrtho ( Mat34 *m, f32 t, f32 b, f32 l, f32 r, f32 scaleS, in MAT34LightOrtho() argument 639 { MTXLightOrtho( (MtxPtr)(m->mtx), t, b, l, r, scaleS, scaleT, transS, transT ); } in MAT34LightOrtho()
|
| /CafeSDK-2.12.13/system/include/cafe/gx2/ |
| D | gx2Draw.h | 58 f32 r, f32 g, f32 b, f32 a); 127 f32 r, f32 g, f32 b, f32 a, 203 f32 r, f32 g, f32 b, f32 a, in GX2ClearBuffers() argument 205 …GX2ClearBuffersEx(colorBuffer, depthBuffer, r, g, b, a, depthBuffer->clearDepth, (u8)depthBuffer->… in GX2ClearBuffers()
|
| D | gx2Misc.h | 529 GX2_INLINE u32 GX2Min(u32 a, u32 b) { return (a < b) ? a : b; } in GX2Min() argument 535 GX2_INLINE u32 GX2Max(u32 a, u32 b) { return (a > b) ? a : b; } in GX2Max() argument
|
| /CafeSDK-2.12.13/data/mlc/sys/title/0005001b/10042300/content/ |
| D | exceptions.txt | 23 /vol/system_slc/title/0005001b; 62 /vol/storage_mlc01/sys/title/0005001b; 79 /vol/storage_mlc01/sys/title/0005003b; 85 /vol/storage_mlc01/usr/title/0005000b; 106 /vol/storage_mlc01/title/0005001b; 123 /vol/storage_mlc01/title/0005003b;
|
| /CafeSDK-2.12.13/data/mlc/sys/title/0005001b/10042300/content/content/ |
| D | exceptions.txt | 23 /vol/system_slc/title/0005001b; 62 /vol/storage_mlc01/sys/title/0005001b; 79 /vol/storage_mlc01/sys/title/0005003b; 85 /vol/storage_mlc01/usr/title/0005000b; 106 /vol/storage_mlc01/title/0005001b; 123 /vol/storage_mlc01/title/0005003b;
|