Lines Matching refs:text
311 void BgPutStringN(s32 x, s32 y, s32 palette, const char *text, s32 num) in BgPutStringN() argument
321 if (text[i] == '\0') in BgPutStringN()
325 BgPutChar(x + i, y, palette, text[i]); in BgPutStringN()
352 void BgPutString(s32 x, s32 y, s32 palette, const char *text) in BgPutString() argument
354 BgPutStringN(x, y, palette, text, BGSTR_MAX_LENGTH); in BgPutString()
366 void BgPrintStr(s32 x, s32 y, s32 palette, const char *text, ...) in BgPrintStr() argument
372 va_start(vlist, text); in BgPrintStr()
373 (void)vsnprintf(temp, sizeof(temp) - 1, text, vlist); in BgPrintStr()
387 void BgSetMessage(s32 palette, const char *text, ...) in BgSetMessage() argument
393 va_start(vlist, text); in BgSetMessage()
394 (void)vsnprintf(temp, sizeof(temp) - 1, text, vlist); in BgSetMessage()