Lines Matching refs:string
336 void DEMOPuts( s16 x, s16 y, s16 z, char* string ) in DEMOPuts() argument
338 char* str = string; in DEMOPuts()
368 w = string[i] - ' '; in DEMOPuts()
383 string = str; in DEMOPuts()
608 int DEMORFPuts(s16 x, s16 y, s16 z, char* string) in DEMORFPuts() argument
633 while (*string) in DEMORFPuts()
635 if (*string == '\n') in DEMORFPuts()
639 ++string; in DEMORFPuts()
643 if (*string == '\t') in DEMORFPuts()
647 ++string; in DEMORFPuts()
651 string = OSGetFontTexture(string, &image, &xChar, &yChar, &cx); in DEMORFPuts()
660 int DEMORFPutsEx(s16 x, s16 y, s16 z, char* string, s16 maxWidth, int length) in DEMORFPutsEx() argument
686 end = string + length; in DEMORFPutsEx()
688 while (*string && string < end) in DEMORFPutsEx()
691 if (*string == '\n') in DEMORFPutsEx()
695 ++string; in DEMORFPutsEx()
699 string = OSGetFontTexture(string, &image, &xChar, &yChar, &cx); in DEMORFPutsEx()
753 char* DEMODumpROMFont(char* string) in DEMODumpROMFont() argument
783 string = OSGetFontTexel(string, image, 0, 48 / 4, &width); in DEMODumpROMFont()
797 return string; in DEMODumpROMFont()
809 int DEMOGetRFTextWidth(char* string) in DEMOGetRFTextWidth() argument
818 while (*string) in DEMOGetRFTextWidth()
820 if (*string == '\n') in DEMOGetRFTextWidth()
828 string = OSGetFontWidth(string, &cx); in DEMOGetRFTextWidth()
847 int DEMOGetRFTextHeight(char* string) in DEMOGetRFTextHeight() argument
854 while (*string) in DEMOGetRFTextHeight()
856 if (*string == '\n') in DEMOGetRFTextHeight()
860 ++string; in DEMOGetRFTextHeight()