Lines Matching refs:temp
371 char temp[(BGSTR_MAX_LENGTH + 1) * 2]; in BgPrintStr() local
374 MI_CpuClear8(temp, sizeof(temp)); in BgPrintStr()
376 (void)vsnprintf(temp, sizeof(temp) - 1, text, vlist); in BgPrintStr()
378 BgPutString(x, y, palette, temp); in BgPrintStr()
392 char temp[(BGSTR_MAX_LENGTH + 1) * 2]; in BgSetMessage() local
395 MI_CpuClear8(temp, sizeof(temp)); in BgSetMessage()
397 (void)vsnprintf(temp, sizeof(temp) - 1, text, vlist); in BgSetMessage()
399 BgPutString(4, 22, palette, temp); in BgSetMessage()
432 u16 temp; in BgColorString() local
443 temp = vscr[index]; in BgColorString()
444 temp &= 0x0fff; in BgColorString()
445 temp |= (palette << 12); in BgColorString()
446 vscr[index] = temp; in BgColorString()