Lines Matching refs:string
325 void DEMOPuts( s16 x, s16 y, s16 z, char* string ) in DEMOPuts() argument
327 char* str = string; in DEMOPuts()
357 w = string[i] - ' '; in DEMOPuts()
372 string = str; in DEMOPuts()
594 int DEMORFPuts(s16 x, s16 y, s16 z, char* string) in DEMORFPuts() argument
619 while (*string) in DEMORFPuts()
621 if (*string == '\n') in DEMORFPuts()
625 ++string; in DEMORFPuts()
629 if (*string == '\t') in DEMORFPuts()
633 ++string; in DEMORFPuts()
637 string = OSGetFontTexture(string, &image, &xChar, &yChar, &cx); in DEMORFPuts()
646 int DEMORFPutsEx(s16 x, s16 y, s16 z, char* string, s16 maxWidth, int length) in DEMORFPutsEx() argument
672 end = string + length; in DEMORFPutsEx()
674 while (*string && string < end) in DEMORFPutsEx()
677 if (*string == '\n') in DEMORFPutsEx()
681 ++string; in DEMORFPutsEx()
685 string = OSGetFontTexture(string, &image, &xChar, &yChar, &cx); in DEMORFPutsEx()
736 char* DEMODumpROMFont(char* string) in DEMODumpROMFont() argument
766 string = OSGetFontTexel(string, image, 0, 48 / 4, &width); in DEMODumpROMFont()
780 return string; in DEMODumpROMFont()
792 int DEMOGetRFTextWidth(char* string) in DEMOGetRFTextWidth() argument
801 while (*string) in DEMOGetRFTextWidth()
803 if (*string == '\n') in DEMOGetRFTextWidth()
811 string = OSGetFontWidth(string, &cx); in DEMOGetRFTextWidth()
830 int DEMOGetRFTextHeight(char* string) in DEMOGetRFTextHeight() argument
837 while (*string) in DEMOGetRFTextHeight()
839 if (*string == '\n') in DEMOGetRFTextHeight()
843 ++string; in DEMOGetRFTextHeight()