Home
last modified time | relevance | path

Searched refs:string (Results 1 – 23 of 23) sorted by relevance

/RvlSDK-3.3/build/libraries/demo/src/
DDEMOPuts.c342 void DEMOPuts( s16 x, s16 y, s16 z, char* string ) in DEMOPuts() argument
344 char* str = string; in DEMOPuts()
374 w = string[i] - ' '; in DEMOPuts()
389 string = str; in DEMOPuts()
614 int DEMORFPuts(s16 x, s16 y, s16 z, char* string) in DEMORFPuts() argument
639 while (*string) in DEMORFPuts()
641 if (*string == '\n') in DEMORFPuts()
645 ++string; in DEMORFPuts()
649 if (*string == '\t') in DEMORFPuts()
653 ++string; in DEMORFPuts()
[all …]
DDEMOWin.c175 static void __DEMOWin_puts_n ( s16 x, s16 y, s16 z, u16 n, char* string );
586 char string[DEMOWIN_MAX_STRING_SIZE]; in DEMOWinPrintfXY() local
603 vsprintf(string, fmt, vlist); in DEMOWinPrintfXY()
612 string[handle->char_width - col] = 0; in DEMOWinPrintfXY()
616 for (i=0; i<strlen(string); i++) in DEMOWinPrintfXY()
618 handle->buffer[index+i] = (u8)string[i]; in DEMOWinPrintfXY()
1225 static void __DEMOWin_puts_n( s16 x, s16 y, s16 z, u16 n, char* string ) in __DEMOWin_puts_n() argument
1246 w = string[i] - ' '; in __DEMOWin_puts_n()
/RvlSDK-3.3/include/demo/
DDEMOPuts.h63 extern int DEMOGetRFTextWidth ( char* string );
64 extern int DEMOGetRFTextHeight ( char* string );
66 extern int DEMORFPuts ( s16 x, s16 y, s16 z, char* string );
67 extern int DEMORFPutsEx ( s16 x, s16 y, s16 z, char* string, s16 maxWidth, int …
70 extern char* DEMODumpROMFont ( char* string );
/RvlSDK-3.3/build/demos/hio2demo/include/
Dmulti.h38 char string[24]; // Message member
49 void MultiPacketToString( char *string, MULTI_PACKET* packet ) in MultiPacketToString() argument
56 (void)sprintf( string, "%s, %02d/%02d %02d:%02d:%02d %03d", in MultiPacketToString()
57 packet->string, in MultiPacketToString()
/RvlSDK-3.3/build/demos/osdemo/src/
Dfontdemo2.c39 char* string; in main() local
60 string = buffer; in main()
80 string = OSGetFontTexel(string, image, 0, 24 / 4, &width); in main()
Dfontdemo1.c130 static s32 DrawString(int x, int y, char* string) in DrawString() argument
134 while (*string) in DrawString()
141 string = OSGetFontTexture(string, &image, &xChar, &yChar, &width); in DrawString()
/RvlSDK-3.3/build/demos/fntdemo/src/
Dfntdemo1.c180 const char* string, in DrawString() argument
188 while (*string || (utf16 && *(string + 1))) in DrawString()
192 string = FNTGetTexture(font, string, &tex); in DrawString()
215 const char* string, in GetStringWidth() argument
222 while (*string || (utf16 && *(string + 1))) in GetStringWidth()
225 string = FNTGetWidth(font, string, &width); in GetStringWidth()
/RvlSDK-3.3/include/revolution/
Dfnt.h112 const char* string,
117 char* FNTGetWidth( const FNTHeader* font, const char* string, s32* width );
125 BOOL FNTSetAlternateChar( FNTHeader* font, const char* string );
Dkpr.h83 u8 KPRLookAhead ( KPRQueue *queue, wchar_t *string, u32 maxSize );
/RvlSDK-3.3/include/revolution/os/
DOSFont.h104 char* OSGetFontWidth ( const char* string, s32* width );
116 char* OSGetFontTexture( const char* string, void** image, s32 *x, s32 *y, s32* width );
133 char* OSGetFontTexel ( const char* string, void* image, s32 pos, s32 stride, s32* width );
/RvlSDK-3.3/build/tools/dspadpcm/src/
Dmain.c189 BYTE *findbase(BYTE *string) in findbase() argument
192 BYTE *ptr = string; in findbase()
196 while ((--ptr >= string) && (*ptr != '\\') && (*ptr != '/') && (*ptr != ':')); in findbase()
206 BYTE *findext(BYTE *string) in findext() argument
211 ptr = string; in findext()
217 while ((--ptr >= string) && (*ptr != '.')); in findext()
219 if (ptr <= string) in findext()
/RvlSDK-3.3/build/demos/hio2demo/vc++/simple/
Dsimple.cpp214 strcpy_s( stPacket.string, sizeof( stPacket.string ), "PC TIME" ); in __HIO2Send()
/RvlSDK-3.3/build/demos/scdemo/src/
Dmain.c50 static void convertWcharToChar(char* string, wchar_t* w_string) in convertWcharToChar() argument
55 strncpy(string, nstring, SC_OWNER_NICKNAME_LENGTH_MAX); in convertWcharToChar()
/RvlSDK-3.3/build/demos/hio2demo/src/
Dsimple.c240 (void)strcpy(sendBuffer.string, "NDEV TIME"); in myAppInit()
241 (void)strcpy(recvBuffer.string, "PC TIME"); in myAppInit()
Dmulti-main.c250 (void)strcpy(sendBuffer.string,"NNGC TIME"); in myAppInit()
/RvlSDK-3.3/build/demos/wpaddemo/src/
Dmplus.c124 static void printBuffer ( char *string, ... );
437 char string[256]; in myPrint() local
440 vsprintf(string, fmt, vlist); in myPrint()
445 DEMORFPrintf((s16)x, (s16)y, (s16)z, "%s", string); in myPrint()
449 DEMOPrintf((s16)x, (s16)y, (s16)z, "%s", string); in myPrint()
463 static void printBuffer( char *string, ... ) in printBuffer() argument
469 va_start(vlist, string); in printBuffer()
470 vsprintf((char *)(&__buffer[__curr_line][0]), string, vlist); in printBuffer()
Ddummy_checker.c92 static void printBuffer ( char *string, ... );
/RvlSDK-3.3/build/libraries/arc/src/
Darc.c170 static BOOL isSame(const char* path, const char* string) in isSame() argument
172 while(*string != '\0') in isSame()
175 if (tolower(*path++) != tolower(*string++)) in isSame()
/RvlSDK-3.3/build/demos/hio2demo/vc++/multi/
Dmulti.cpp319 strcpy( pPacket->string, "PC TIME" ); in CreatePcTime()
/RvlSDK-3.3/vcmv/depend/RVL/DEBUG/
Dvcmv_test.d114 …volution/Freescale/CW\ for\ Wii\ v1.7/PowerPC_EABI_Support/Msl/Msl_c/MSL_Common/Include/string.h \
/RvlSDK-3.3/RVL/bin/demos/gxdemo/
Dsmp-onetri.map2270 …CEABI.bare.H.a E:\Products\EPPC\TempBuildMSL\PowerPC_EABI_Support\MSL\MSL_C\MSL_Common\Src\string.o
2271 …CEABI.bare.H.a E:\Products\EPPC\TempBuildMSL\PowerPC_EABI_Support\MSL\MSL_C\MSL_Common\Src\string.o
2272 …CEABI.bare.H.a E:\Products\EPPC\TempBuildMSL\PowerPC_EABI_Support\MSL\MSL_C\MSL_Common\Src\string.o
2273 …CEABI.bare.H.a E:\Products\EPPC\TempBuildMSL\PowerPC_EABI_Support\MSL\MSL_C\MSL_Common\Src\string.o
2274 …CEABI.bare.H.a E:\Products\EPPC\TempBuildMSL\PowerPC_EABI_Support\MSL\MSL_C\MSL_Common\Src\string.o
2275 …CEABI.bare.H.a E:\Products\EPPC\TempBuildMSL\PowerPC_EABI_Support\MSL\MSL_C\MSL_Common\Src\string.o
2276 …CEABI.bare.H.a E:\Products\EPPC\TempBuildMSL\PowerPC_EABI_Support\MSL\MSL_C\MSL_Common\Src\string.o
2277 …CEABI.bare.H.a E:\Products\EPPC\TempBuildMSL\PowerPC_EABI_Support\MSL\MSL_C\MSL_Common\Src\string.o
2278 …CEABI.bare.H.a E:\Products\EPPC\TempBuildMSL\PowerPC_EABI_Support\MSL\MSL_C\MSL_Common\Src\string.o
2279 …CEABI.bare.H.a E:\Products\EPPC\TempBuildMSL\PowerPC_EABI_Support\MSL\MSL_C\MSL_Common\Src\string.o
[all …]
/RvlSDK-3.3/RVL/bin/demos/thpdemo/
DTHPSimple.map2623 …CEABI.bare.H.a E:\Products\EPPC\TempBuildMSL\PowerPC_EABI_Support\MSL\MSL_C\MSL_Common\Src\string.o
2624 …CEABI.bare.H.a E:\Products\EPPC\TempBuildMSL\PowerPC_EABI_Support\MSL\MSL_C\MSL_Common\Src\string.o
2625 …CEABI.bare.H.a E:\Products\EPPC\TempBuildMSL\PowerPC_EABI_Support\MSL\MSL_C\MSL_Common\Src\string.o
2626 …CEABI.bare.H.a E:\Products\EPPC\TempBuildMSL\PowerPC_EABI_Support\MSL\MSL_C\MSL_Common\Src\string.o
2627 …CEABI.bare.H.a E:\Products\EPPC\TempBuildMSL\PowerPC_EABI_Support\MSL\MSL_C\MSL_Common\Src\string.o
2628 …CEABI.bare.H.a E:\Products\EPPC\TempBuildMSL\PowerPC_EABI_Support\MSL\MSL_C\MSL_Common\Src\string.o
2629 …CEABI.bare.H.a E:\Products\EPPC\TempBuildMSL\PowerPC_EABI_Support\MSL\MSL_C\MSL_Common\Src\string.o
2630 …CEABI.bare.H.a E:\Products\EPPC\TempBuildMSL\PowerPC_EABI_Support\MSL\MSL_C\MSL_Common\Src\string.o
2631 …CEABI.bare.H.a E:\Products\EPPC\TempBuildMSL\PowerPC_EABI_Support\MSL\MSL_C\MSL_Common\Src\string.o
2632 …CEABI.bare.H.a E:\Products\EPPC\TempBuildMSL\PowerPC_EABI_Support\MSL\MSL_C\MSL_Common\Src\string.o
[all …]
/RvlSDK-3.3/vcmv/bin/RVL/
DVcmvTestD.map7067 …EABI.bare.H.a D:\workspace\EPPC\TempBuildMSL\PowerPC_EABI_Support\MSL\MSL_C\MSL_Common\Src\string.o
7068 …EABI.bare.H.a D:\workspace\EPPC\TempBuildMSL\PowerPC_EABI_Support\MSL\MSL_C\MSL_Common\Src\string.o
7069 …EABI.bare.H.a D:\workspace\EPPC\TempBuildMSL\PowerPC_EABI_Support\MSL\MSL_C\MSL_Common\Src\string.o
7070 …EABI.bare.H.a D:\workspace\EPPC\TempBuildMSL\PowerPC_EABI_Support\MSL\MSL_C\MSL_Common\Src\string.o
7071 …EABI.bare.H.a D:\workspace\EPPC\TempBuildMSL\PowerPC_EABI_Support\MSL\MSL_C\MSL_Common\Src\string.o
7072 …EABI.bare.H.a D:\workspace\EPPC\TempBuildMSL\PowerPC_EABI_Support\MSL\MSL_C\MSL_Common\Src\string.o
7073 …EABI.bare.H.a D:\workspace\EPPC\TempBuildMSL\PowerPC_EABI_Support\MSL\MSL_C\MSL_Common\Src\string.o
7074 …EABI.bare.H.a D:\workspace\EPPC\TempBuildMSL\PowerPC_EABI_Support\MSL\MSL_C\MSL_Common\Src\string.o
7075 …EABI.bare.H.a D:\workspace\EPPC\TempBuildMSL\PowerPC_EABI_Support\MSL\MSL_C\MSL_Common\Src\string.o
7076 …EABI.bare.H.a D:\workspace\EPPC\TempBuildMSL\PowerPC_EABI_Support\MSL\MSL_C\MSL_Common\Src\string.o
[all …]