| /RvlSDK-2.1/RVL/bin/demos/gxdemo/ |
| D | smp-onetri.map | 8 00000000 0002e0 80004000 000001c0 1 .init os.a __start.o 9 00000000 000028 80004000 000001c0 4 __check_pad3 os.a __start.o 10 00000028 00000c 80004028 000001e8 4 __set_debug_bba os.a __start.o 11 00000034 000008 80004034 000001f4 4 __get_debug_bba os.a __start.o 12 0000003c 00016c 8000403c 000001fc 4 __start os.a __start.o 13 000001a8 000090 800041a8 00000368 4 __init_registers os.a __start.o 14 00000238 0000a8 80004238 000003f8 4 __init_data os.a __start.o 15 000002e0 000058 800042e0 000004a0 1 .init os.a __ppc_eabi_init.o 16 000002e0 000024 800042e0 000004a0 4 __init_hardware os.a __ppc_eabi_init.o 17 00000304 000034 80004304 000004c4 4 __flush_cache os.a __ppc_eabi_init.o [all …]
|
| /RvlSDK-2.1/RVL/bin/demos/thpdemo/ |
| D | THPSimple.map | 8 00000000 0002e0 80004000 000001c0 1 .init os.a __start.o 9 00000000 000028 80004000 000001c0 4 __check_pad3 os.a __start.o 10 00000028 00000c 80004028 000001e8 4 __set_debug_bba os.a __start.o 11 00000034 000008 80004034 000001f4 4 __get_debug_bba os.a __start.o 12 0000003c 00016c 8000403c 000001fc 4 __start os.a __start.o 13 000001a8 000090 800041a8 00000368 4 __init_registers os.a __start.o 14 00000238 0000a8 80004238 000003f8 4 __init_data os.a __start.o 15 000002e0 000058 800042e0 000004a0 1 .init os.a __ppc_eabi_init.o 16 000002e0 000024 800042e0 000004a0 4 __init_hardware os.a __ppc_eabi_init.o 17 00000304 000034 80004304 000004c4 4 __flush_cache os.a __ppc_eabi_init.o [all …]
|
| /RvlSDK-2.1/build/tools/dls1wt/src/ |
| D | dls.c | 78 #define reverse_endian_16(a)( \ argument 79 ((a & 0xFF00) >> 8) | \ 80 ((a & 0x00FF) << 8)) 82 #define reverse_endian_32(a)( \ argument 83 ((a & 0xFF000000) >> 24) | \ 84 ((a & 0x00FF0000) >> 8) | \ 85 ((a & 0x0000FF00) << 8) | \ 86 ((a & 0x000000FF) << 24)) 478 WTART *a = &artTemp; in dls_art_default() local 480 a->lfoFreq = 0xFCACAE9C; // 5Hz in dls_art_default() [all …]
|
| /RvlSDK-2.1/build/demos/gxdemo/src/PixelProc/ |
| D | pix-a-comp.c | 210 AlphaMode* a = s->alphamode; in SceneDraw() local 229 GXSetAlphaCompare( a->comp0, a->ref0, a->op, a->comp1, a->ref1 ); in SceneDraw() 230 GXSetAlphaUpdate( a->update_enable ); in SceneDraw() 233 myDrawModel(a, (s32)v->width, (s32)v->height ); in SceneDraw() 250 AlphaMode* a = s->alphamode; in SceneDrawInfo() local 258 if ( a->title ) in SceneDrawInfo() 260 DEMOPuts( 10, 2, 0, a->title ); in SceneDrawInfo() 267 if ( a->comp0 == myAlphaComp[lid0].comp ) break; in SceneDrawInfo() 271 if ( a->comp1 == myAlphaComp[lid1].comp ) break; in SceneDrawInfo() 275 if ( a->op == myAlphaOps[oid].op ) break; in SceneDrawInfo() [all …]
|
| /RvlSDK-2.1/build/libraries/mtx/src/ |
| D | mtx44.c | 445 void C_MTX44Concat( const Mtx44 a, const Mtx44 b, Mtx44 ab ) in C_MTX44Concat() argument 450 ASSERTMSG( (a != 0), MTX44_CONCAT_1 ); in C_MTX44Concat() 454 if( (ab == a) || (ab == b) ) in C_MTX44Concat() 465 m[0][0] = a[0][0]*b[0][0] + a[0][1]*b[1][0] + a[0][2]*b[2][0] + a[0][3]*b[3][0]; in C_MTX44Concat() 466 m[0][1] = a[0][0]*b[0][1] + a[0][1]*b[1][1] + a[0][2]*b[2][1] + a[0][3]*b[3][1]; in C_MTX44Concat() 467 m[0][2] = a[0][0]*b[0][2] + a[0][1]*b[1][2] + a[0][2]*b[2][2] + a[0][3]*b[3][2]; in C_MTX44Concat() 468 m[0][3] = a[0][0]*b[0][3] + a[0][1]*b[1][3] + a[0][2]*b[2][3] + a[0][3]*b[3][3]; in C_MTX44Concat() 470 m[1][0] = a[1][0]*b[0][0] + a[1][1]*b[1][0] + a[1][2]*b[2][0] + a[1][3]*b[3][0]; in C_MTX44Concat() 471 m[1][1] = a[1][0]*b[0][1] + a[1][1]*b[1][1] + a[1][2]*b[2][1] + a[1][3]*b[3][1]; in C_MTX44Concat() 472 m[1][2] = a[1][0]*b[0][2] + a[1][1]*b[1][2] + a[1][2]*b[2][2] + a[1][3]*b[3][2]; in C_MTX44Concat() [all …]
|
| D | vec.c | 111 void C_VECAdd ( const Vec *a, const Vec *b, Vec *ab ) in C_VECAdd() argument 114 ASSERTMSG( ( a != 0), VEC_ADD_1 ); in C_VECAdd() 119 ab->x = a->x + b->x; in C_VECAdd() 120 ab->y = a->y + b->y; in C_VECAdd() 121 ab->z = a->z + b->z; in C_VECAdd() 180 void C_VECSubtract ( const Vec *a, const Vec *b, Vec *a_b ) in C_VECSubtract() argument 183 ASSERTMSG( ( a != 0), VEC_SUBTRACT_1 ); in C_VECSubtract() 188 a_b->x = a->x - b->x; in C_VECSubtract() 189 a_b->y = a->y - b->y; in C_VECSubtract() 190 a_b->z = a->z - b->z; in C_VECSubtract() [all …]
|
| D | mtx.c | 326 void C_MTXConcat ( const Mtx a, const Mtx b, Mtx ab ) in C_MTXConcat() argument 331 ASSERTMSG( (a != 0), MTX_CONCAT_1 ); in C_MTXConcat() 335 if( (ab == a) || (ab == b) ) in C_MTXConcat() 347 m[0][0] = a[0][0]*b[0][0] + a[0][1]*b[1][0] + a[0][2]*b[2][0]; in C_MTXConcat() 348 m[0][1] = a[0][0]*b[0][1] + a[0][1]*b[1][1] + a[0][2]*b[2][1]; in C_MTXConcat() 349 m[0][2] = a[0][0]*b[0][2] + a[0][1]*b[1][2] + a[0][2]*b[2][2]; in C_MTXConcat() 350 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() 352 m[1][0] = a[1][0]*b[0][0] + a[1][1]*b[1][0] + a[1][2]*b[2][0]; in C_MTXConcat() 353 m[1][1] = a[1][0]*b[0][1] + a[1][1]*b[1][1] + a[1][2]*b[2][1]; in C_MTXConcat() 354 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 …]
|
| /RvlSDK-2.1/build/demos/axdemo/src/ |
| D | axstream.c | 707 adpcm.a[0][0] = dspHeader->coef[0]; in startStreamAdpcm() 708 adpcm.a[0][1] = dspHeader->coef[1]; in startStreamAdpcm() 709 adpcm.a[1][0] = dspHeader->coef[2]; in startStreamAdpcm() 710 adpcm.a[1][1] = dspHeader->coef[3]; in startStreamAdpcm() 711 adpcm.a[2][0] = dspHeader->coef[4]; in startStreamAdpcm() 712 adpcm.a[2][1] = dspHeader->coef[5]; in startStreamAdpcm() 713 adpcm.a[3][0] = dspHeader->coef[6]; in startStreamAdpcm() 714 adpcm.a[3][1] = dspHeader->coef[7]; in startStreamAdpcm() 715 adpcm.a[4][0] = dspHeader->coef[8]; in startStreamAdpcm() 716 adpcm.a[4][1] = dspHeader->coef[9]; in startStreamAdpcm() [all …]
|
| D | axsimple.c | 213 #define GetDSPADPCMDataAddress(a) ((void*)((u32)a + sizeof(DSPADPCM))) argument 214 #define GetDSPADPCMDataSize32B(a) (RoundUp64(((DSPADPCM*)a)->num_adpcm_nibbles) >> 1) argument 677 adpcm.a[0][0] = ps->coef[0]; in AquireVoiceADPCM() 678 adpcm.a[0][1] = ps->coef[1]; in AquireVoiceADPCM() 679 adpcm.a[1][0] = ps->coef[2]; in AquireVoiceADPCM() 680 adpcm.a[1][1] = ps->coef[3]; in AquireVoiceADPCM() 681 adpcm.a[2][0] = ps->coef[4]; in AquireVoiceADPCM() 682 adpcm.a[2][1] = ps->coef[5]; in AquireVoiceADPCM() 683 adpcm.a[3][0] = ps->coef[6]; in AquireVoiceADPCM() 684 adpcm.a[3][1] = ps->coef[7]; in AquireVoiceADPCM() [all …]
|
| /RvlSDK-2.1/build/demos/carddemo/tpl/ |
| D | heiho.tcs | 2 file 0 = heiho001.tga ; this is a 32x32 rgba image 3 file 1 = heiho002.tga ; this is a 32x32 rgba image 4 file 2 = heiho003.tga ; this is a 32x32 rgba image 5 file 3 = heiho004.tga ; this is a 32x32 rgba image 6 file 4 = heiho005.tga ; this is a 32x32 rgba image 7 file 5 = heiho006.tga ; this is a 32x32 rgba image 8 file 6 = heiho007.tga ; this is a 32x32 rgba image 9 file 7 = heiho008.tga ; this is a 32x32 rgba image
|
| D | heihoC8.tcs | 2 file 0 = heiho001CI.tga ; this is a 32x32 CI image 3 file 1 = heiho002CI.tga ; this is a 32x32 CI image 4 file 2 = heiho003CI.tga ; this is a 32x32 CI image 5 file 3 = heiho004CI.tga ; this is a 32x32 CI image 6 file 4 = heiho005CI.tga ; this is a 32x32 CI image 7 file 5 = heiho006CI.tga ; this is a 32x32 CI image 8 file 6 = heiho007CI.tga ; this is a 32x32 CI image 9 file 7 = heiho008CI.tga ; this is a 32x32 CI image
|
| D | icon.tcs | 2 file 0 = one.tga ; this is a 32x32 rgba image 3 file 1 = two.tga ; this is a 32x32 rgba image 4 file 2 = three.tga ; this is a 32x32 rgba image 5 file 3 = four.tga ; this is a 32x32 rgba image 6 file 4 = five.tga ; this is a 32x32 rgba image 7 file 5 = six.tga ; this is a 32x32 rgba image 8 file 6 = seven.tga ; this is a 32x32 rgba image 9 file 7 = eight.tga ; this is a 32x32 rgba image
|
| /RvlSDK-2.1/build/libraries/tc/include/ |
| D | S3_intrf.h | 23 #define max(a,b) (((a) > (b)) ? (a) : (b)) argument 27 #define min(a,b) (((a) < (b)) ? (a) : (b)) argument
|
| /RvlSDK-2.1/build/demos/reldemo/ |
| D | makefile | 89 CPPSRCS = a.cpp b.cpp 100 RELNAMES = a b 139 $(FULLBIN_ROOT)/a$(PREPLFSUFFIX): a.o \ 147 $(FULLBIN_ROOT)/a$(PLFSUFFIX): a.o \
|
| /RvlSDK-2.1/include/revolution/ |
| D | mtx.h | 197 #define MTXDegToRad(a) ( (a) * 0.01745329252f ) argument 198 #define MTXRadToDeg(a) ( (a) * 57.29577951f ) argument 215 void C_MTXConcat ( const Mtx a, const Mtx b, Mtx ab ); 216 void C_MTXConcatArray ( const Mtx a, const Mtx* srcBase, Mtx* dstBase, u32 count ); 225 void PSMTXConcat ( const Mtx a, const Mtx b, Mtx ab ); 226 void PSMTXConcatArray ( const Mtx a, const Mtx* srcBase, Mtx* dstBase, u32 count ); 405 void C_VECAdd ( const Vec *a, const Vec *b, Vec *ab ); 406 void C_VECSubtract ( const Vec *a, const Vec *b, Vec *a_b ); 411 f32 C_VECDotProduct ( const Vec *a, const Vec *b ); 412 void C_VECCrossProduct ( const Vec *a, const Vec *b, Vec *axb ); [all …]
|
| /RvlSDK-2.1/build/demos/carddemo/src/ |
| D | save.c | 31 #define OFFSET(n, a) (((u32) (n)) & ((a) - 1)) argument 32 #define TRUNC(n, a) (((u32) (n)) & ~((a) - 1)) argument 33 #define ROUND(n, a) (((u32) (n) + (a) - 1) & ~((a) - 1)) argument
|
| /RvlSDK-2.1/build/demos/reldemo/include/ |
| D | inline.h | 32 inline void InlineFunc(int a, int b) in InlineFunc() argument 34 OSReport("%d + %d = %d\n", a, b, a + b); in InlineFunc()
|
| /RvlSDK-2.1/build/tools/TexConv/src/ |
| D | tga.cpp | 468 u16 a, u16Tmp; in CreateTgaAlphaLayer() local 517 a = 0; in CreateTgaAlphaLayer() 520 a = 0x00FF; // (will be converted to u8 value when set) in CreateTgaAlphaLayer() 525 a = (u16)(*(pixelPtr + 3)); in CreateTgaAlphaLayer() 538 a = (u16)(*pixelPtr); in CreateTgaAlphaLayer() 544 a = 0; in CreateTgaAlphaLayer() 547 a = 0x00FF; in CreateTgaAlphaLayer() 553 a = (u16)(*(pixelPtr + 2)); // red in CreateTgaAlphaLayer() 554 a += (u16)(*(pixelPtr + 1)); // green in CreateTgaAlphaLayer() 555 a += (u16)(*pixelPtr); // blue in CreateTgaAlphaLayer() [all …]
|
| /RvlSDK-2.1/build/demos/wpaddemo/src/ |
| D | wpad_axdemo.c | 181 #define GetDSPADPCMDataAddress(a) ((void*)((u32)a + sizeof(DSPADPCM))) argument 182 #define GetDSPADPCMDataSize32B(a) (RoundUp64(((DSPADPCM*)a)->num_adpcm_nibbles) >> 1) argument 723 adpcm.a[0][0] = ps->coef[0]; in AquireVoiceADPCM() 724 adpcm.a[0][1] = ps->coef[1]; in AquireVoiceADPCM() 725 adpcm.a[1][0] = ps->coef[2]; in AquireVoiceADPCM() 726 adpcm.a[1][1] = ps->coef[3]; in AquireVoiceADPCM() 727 adpcm.a[2][0] = ps->coef[4]; in AquireVoiceADPCM() 728 adpcm.a[2][1] = ps->coef[5]; in AquireVoiceADPCM() 729 adpcm.a[3][0] = ps->coef[6]; in AquireVoiceADPCM() 730 adpcm.a[3][1] = ps->coef[7]; in AquireVoiceADPCM() [all …]
|
| /RvlSDK-2.1/build/demos/osdemo/src/ |
| D | stopwatchdemo.c | 40 Mtx a, b, ab; in main() local 52 MTXIdentity(a); in main() 61 MTXConcat(a, b, ab); in main()
|
| /RvlSDK-2.1/build/demos/videmo/src/ |
| D | moving.c | 35 #define FLOOR(x, a) ( (x < a)? a : x ) argument 37 #define CLAMP(x, a, b) (CEIL(FLOOR(x, a), b)) argument
|
| D | moving.progressive.c | 30 #define FLOOR(x, a) ( (x < a)? a : x ) argument 32 #define CLAMP(x, a, b) (CEIL(FLOOR(x, a), b)) argument
|
| D | moving.30Hz.c | 35 #define FLOOR(x, a) ( (x < a)? a : x ) argument 37 #define CLAMP(x, a, b) (CEIL(FLOOR(x, a), b)) argument
|
| /RvlSDK-2.1/build/libraries/gd/src/ |
| D | GDTev.c | 135 GXTevColorArg a, in GDSetTevColorCalc() argument 147 GDWriteBPCmd( TEV_COLOR_ENV( d, c, b, a, in GDSetTevColorCalc() 152 GDWriteBPCmd( TEV_COLOR_ENV( d, c, b, a, in GDSetTevColorCalc() 174 GXTevAlphaArg a, in GDSetTevAlphaCalcAndSwap() argument 189 d, c, b, a, in GDSetTevAlphaCalcAndSwap() 195 d, c, b, a, in GDSetTevAlphaCalcAndSwap() 219 regRA = TEV_REGISTERL( color.r, color.a, TEV_COLOR_REG, in GDSetTevColor() 251 (color.a & TEV_REGISTER_VAL_MASK), in GDSetTevColorS10() 281 regRA = TEV_REGISTERL( color.r, color.a, TEV_KONSTANT_REG, in GDSetTevKColor()
|
| /RvlSDK-2.1/ |
| D | readme-RVL_SDK-2_1.txt | 19 The Revolution SDK supports a Wii development environment. 35 Three USB ports are required to connect with a PC. (Although two ports are specified in some manual… 78 …a command that corresponds to the register type "CP" (as described in the function reference "Abou… 90 Dual of hio2demo is a demo that carries out communication using separate channels: EXI00 for commun… 92 Although the 'multi' demo is designed for multiple NDEV consoles connected to a single PC, operatio… 103 At the present time, a large load is placed on the CPU when the Wii Remote establishes a connection… 105 …a connection with the console and sounds are being played through the speaker, playback will be in… 109 As a temporary workaround, if multiple Wii Remotes are going to play sound at the same time, do not… 112 [WPAD] When DEMO Library rendering functions are called after calling WPADShutdown(), a freeze occu… 127 However, we have confirmed a bug in the current SDK that allows the termination process to complete… [all …]
|