Home
last modified time | relevance | path

Searched refs:a (Results 1 – 25 of 100) sorted by relevance

1234

/RvlSDK-3.2.2/RVL/bin/demos/thpdemo/
DTHPSimple.map8 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-3.2.2/RVL/bin/demos/gxdemo/
Dsmp-onetri.map8 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-3.2.2/build/tools/dls1wt/src/
Ddls.c78 #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-3.2.2/build/demos/gxdemo/src/PixelProc/
Dpix-a-comp.c210 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-3.2.2/build/demos/osdemo/src/
Dcrcdemo.c176 #define PrintResultEq( a, b, f ) \ argument
177 …do { OSReport( ((a) == (b)) ? "[--OK--] " : "[**NG**] " ); (f) = (f) && ((a) == (b)); } while( FAL…
178 #define PrintResultDigestEq( a, b, l, f ) \ argument
179 …do { OSReport( (memcmp((a), (b), (l)) == 0) ? "[--OK--] " : "[**NG**] " ); (f) = (f) && (memcmp((a
190 char *a[] = { in DoTest() local
196 for (i = 0; i < sizeof(a) / sizeof(char *); i++) in DoTest()
200 result = OSCalcCRC16(a[i], strlen(a[i])); in DoTest()
202 OSReport("OSCalcCRC16(%s) = %04x\n", a[i], result); in DoTest()
208 char *a[] = { in DoTest() local
214 for (i = 0; i < sizeof(a) / sizeof(char *); i++) in DoTest()
[all …]
Dstopwatchdemo.c40 Mtx a, b, ab; in main() local
52 MTXIdentity(a); in main()
61 MTXConcat(a, b, ab); in main()
/RvlSDK-3.2.2/build/libraries/mtx/src/
Dmtx44.c445 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 …]
Dvec.c111 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 …]
Dmtx.c333 void C_MTXConcat ( const Mtx a, const Mtx b, Mtx ab ) in C_MTXConcat() argument
338 ASSERTMSG( (a != 0), MTX_CONCAT_1 ); in C_MTXConcat()
342 if( (ab == a) || (ab == b) ) in C_MTXConcat()
354 m[0][0] = a[0][0]*b[0][0] + a[0][1]*b[1][0] + a[0][2]*b[2][0]; in C_MTXConcat()
355 m[0][1] = a[0][0]*b[0][1] + a[0][1]*b[1][1] + a[0][2]*b[2][1]; in C_MTXConcat()
356 m[0][2] = a[0][0]*b[0][2] + a[0][1]*b[1][2] + a[0][2]*b[2][2]; in C_MTXConcat()
357 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()
359 m[1][0] = a[1][0]*b[0][0] + a[1][1]*b[1][0] + a[1][2]*b[2][0]; in C_MTXConcat()
360 m[1][1] = a[1][0]*b[0][1] + a[1][1]*b[1][1] + a[1][2]*b[2][1]; in C_MTXConcat()
361 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-3.2.2/build/demos/axdemo/src/
Daxsimple.c182 #define GetDSPADPCMDataAddress(a) ((void*)((u32)a + sizeof(DSPADPCM))) argument
183 #define GetDSPADPCMDataSize32B(a) (RoundUp64(((DSPADPCM*)a)->num_adpcm_nibbles) >> 1) argument
464 adpcm.a[0][0] = ps->coef[0]; in AquireVoiceADPCM()
465 adpcm.a[0][1] = ps->coef[1]; in AquireVoiceADPCM()
466 adpcm.a[1][0] = ps->coef[2]; in AquireVoiceADPCM()
467 adpcm.a[1][1] = ps->coef[3]; in AquireVoiceADPCM()
468 adpcm.a[2][0] = ps->coef[4]; in AquireVoiceADPCM()
469 adpcm.a[2][1] = ps->coef[5]; in AquireVoiceADPCM()
470 adpcm.a[3][0] = ps->coef[6]; in AquireVoiceADPCM()
471 adpcm.a[3][1] = ps->coef[7]; in AquireVoiceADPCM()
[all …]
Daxstream.c696 adpcm.a[0][0] = dspHeader->coef[0]; in startStreamAdpcm()
697 adpcm.a[0][1] = dspHeader->coef[1]; in startStreamAdpcm()
698 adpcm.a[1][0] = dspHeader->coef[2]; in startStreamAdpcm()
699 adpcm.a[1][1] = dspHeader->coef[3]; in startStreamAdpcm()
700 adpcm.a[2][0] = dspHeader->coef[4]; in startStreamAdpcm()
701 adpcm.a[2][1] = dspHeader->coef[5]; in startStreamAdpcm()
702 adpcm.a[3][0] = dspHeader->coef[6]; in startStreamAdpcm()
703 adpcm.a[3][1] = dspHeader->coef[7]; in startStreamAdpcm()
704 adpcm.a[4][0] = dspHeader->coef[8]; in startStreamAdpcm()
705 adpcm.a[4][1] = dspHeader->coef[9]; in startStreamAdpcm()
[all …]
/RvlSDK-3.2.2/build/libraries/tc/include/
DS3_intrf.h23 #define max(a,b) (((a) > (b)) ? (a) : (b)) argument
27 #define min(a,b) (((a) < (b)) ? (a) : (b)) argument
/RvlSDK-3.2.2/build/demos/mididemo/src/
Dmidiqueue.c267 static void pushImpl(u8 a) in pushImpl() argument
271 s_ringBuffer[getTailIndex()] = a; in pushImpl()
281 void push(u8 a) in push() argument
283 if(isExclusiveMessage(s_lastStatusByte) && !isEndOfExclusiveMessage(a)) in push()
288 if(isActiveSensingMessage(a)) in push()
293 if(isStatusByte(a)) in push()
295 s_lastStatusByte = a; in push()
296 s_expectedDataNum = getExpectedDataNum(a); in push()
297 if(!isEndOfExclusiveMessage(a)) in push()
299 pushImpl(a); in push()
[all …]
/RvlSDK-3.2.2/build/demos/rsodemo/MakeInc/src/
Dd.c85 int FuncD_1(int a) in FuncD_1() argument
87 OSReport("FuncD_1 Call a = %d\n",a); in FuncD_1()
88 return a; in FuncD_1()
92 void FuncD_2(int a,int b) in FuncD_2() argument
94 OSReport("FuncD_2 Call a = %d b = %d\n",a,b); in FuncD_2()
/RvlSDK-3.2.2/build/demos/reldemo/
Dmakefile89 CPPSRCS = a.cpp b.cpp
100 RELNAMES = a b
139 $(FULLBIN_ROOT)/a$(PREPLFSUFFIX): a.o \
147 $(FULLBIN_ROOT)/a$(PLFSUFFIX): a.o \
/RvlSDK-3.2.2/include/revolution/
Dmtx.h200 #define MTXDegToRad(a) ( (a) * 0.01745329252f ) argument
201 #define MTXRadToDeg(a) ( (a) * 57.29577951f ) argument
218 void C_MTXConcat ( const Mtx a, const Mtx b, Mtx ab );
219 void C_MTXConcatArray ( const Mtx a, const Mtx* srcBase, Mtx* dstBase, u32 count );
228 void PSMTXConcat ( const Mtx a, const Mtx b, Mtx ab );
229 void PSMTXConcatArray ( const Mtx a, const Mtx* srcBase, Mtx* dstBase, u32 count );
408 void C_VECAdd ( const Vec *a, const Vec *b, Vec *ab );
409 void C_VECSubtract ( const Vec *a, const Vec *b, Vec *a_b );
414 f32 C_VECDotProduct ( const Vec *a, const Vec *b );
415 void C_VECCrossProduct ( const Vec *a, const Vec *b, Vec *axb );
[all …]
/RvlSDK-3.2.2/build/demos/reldemo/include/
Dinline.h32 inline void InlineFunc(int a, int b) in InlineFunc() argument
34 OSReport("%d + %d = %d\n", a, b, a + b); in InlineFunc()
/RvlSDK-3.2.2/build/tools/TexConv/src/
Dtga.cpp468 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-3.2.2/build/demos/videmo/src/
Dmoving.c38 #define FLOOR(x, a) ( (x < a)? a : x ) argument
40 #define CLAMP(x, a, b) (CEIL(FLOOR(x, a), b)) argument
Dmoving.progressive.c33 #define FLOOR(x, a) ( (x < a)? a : x ) argument
35 #define CLAMP(x, a, b) (CEIL(FLOOR(x, a), b)) argument
Dmoving.30Hz.c38 #define FLOOR(x, a) ( (x < a)? a : x ) argument
40 #define CLAMP(x, a, b) (CEIL(FLOOR(x, a), b)) argument
/RvlSDK-3.2.2/build/demos/wpaddemo/src/
Dwpad_axdemo.c211 #define GetDSPADPCMDataAddress(a) ((void*)((u32)a + sizeof(DSPADPCM))) argument
212 #define GetDSPADPCMDataSize32B(a) (RoundUp64(((DSPADPCM*)a)->num_adpcm_nibbles) >> 1) argument
908 adpcm.a[0][0] = ps->coef[0]; in AquireVoiceADPCM()
909 adpcm.a[0][1] = ps->coef[1]; in AquireVoiceADPCM()
910 adpcm.a[1][0] = ps->coef[2]; in AquireVoiceADPCM()
911 adpcm.a[1][1] = ps->coef[3]; in AquireVoiceADPCM()
912 adpcm.a[2][0] = ps->coef[4]; in AquireVoiceADPCM()
913 adpcm.a[2][1] = ps->coef[5]; in AquireVoiceADPCM()
914 adpcm.a[3][0] = ps->coef[6]; in AquireVoiceADPCM()
915 adpcm.a[3][1] = ps->coef[7]; in AquireVoiceADPCM()
[all …]
/RvlSDK-3.2.2/build/libraries/gd/src/
DGDTev.c135 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-3.2.2/
Dreadme-RVL_SDK-3_2-patch2.txt22 This patch is a cumulative patch. It includes the content of all patches up to the present.
98 … Dolby Surround and Dolby Pro Logic II. To use these features in a game, you must have a license a…
112 Three USB ports are required to connect to a PC. (Although two ports are specified in some manuals,…
126 …In a typical environment, the update program is executed by starting a bash shell and entering "fw…
158 …A bug was found in the graphics hardware command processor (CP), caused by a difference in interna…
164a command that corresponds to the register type "CP" (as described in the function reference "Abou…
173 …Although the multi demo is designed for multiple NDEV consoles connected to a single PC, operation…
192 Before beginning sound playback, wait a short time after pointer startup.
199 …REVOLUTION OS uses a non-IEEE mode for floating-point calculations. Calculation result is converte…
250 ./RVL/lib/os.a
[all …]
/RvlSDK-3.2.2/include/revolution/os/
DOSFastCast.h316 f32 a; in __OSf32tou8() local
317 register f32* ptr = &a; in __OSf32tou8()
336 f32 a; in __OSf32tou16() local
337 register f32* ptr = &a; in __OSf32tou16()
356 f32 a; in __OSf32tos8() local
357 register f32* ptr = &a; in __OSf32tos8()
377 f32 a; in __OSf32tos16() local
378 register f32* ptr = &a; in __OSf32tos16()

1234