Lines Matching refs:string
342 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()
657 string = OSGetFontTexture(string, &image, &xChar, &yChar, &cx); in DEMORFPuts()
666 int DEMORFPutsEx(s16 x, s16 y, s16 z, char* string, s16 maxWidth, int length) in DEMORFPutsEx() argument
692 end = string + length; in DEMORFPutsEx()
694 while (*string && string < end) in DEMORFPutsEx()
697 if (*string == '\n') in DEMORFPutsEx()
701 ++string; in DEMORFPutsEx()
705 string = OSGetFontTexture(string, &image, &xChar, &yChar, &cx); in DEMORFPutsEx()
759 char* DEMODumpROMFont(char* string) in DEMODumpROMFont() argument
789 string = OSGetFontTexel(string, image, 0, 48 / 4, &width); in DEMODumpROMFont()
803 return string; in DEMODumpROMFont()
815 int DEMOGetRFTextWidth(char* string) in DEMOGetRFTextWidth() argument
824 while (*string) in DEMOGetRFTextWidth()
826 if (*string == '\n') in DEMOGetRFTextWidth()
834 string = OSGetFontWidth(string, &cx); in DEMOGetRFTextWidth()
853 int DEMOGetRFTextHeight(char* string) in DEMOGetRFTextHeight() argument
860 while (*string) in DEMOGetRFTextHeight()
862 if (*string == '\n') in DEMOGetRFTextHeight()
866 ++string; in DEMOGetRFTextHeight()