Lines Matching refs:temp
368 char temp[(BGSTR_MAX_LENGTH + 1) * 2]; in BgPrintStr() local
371 MI_CpuClear8(temp, sizeof(temp)); in BgPrintStr()
373 (void)vsnprintf(temp, sizeof(temp) - 1, text, vlist); in BgPrintStr()
375 BgPutString(x, y, palette, temp); in BgPrintStr()
389 char temp[(BGSTR_MAX_LENGTH + 1) * 2]; in BgSetMessage() local
392 MI_CpuClear8(temp, sizeof(temp)); in BgSetMessage()
394 (void)vsnprintf(temp, sizeof(temp) - 1, text, vlist); in BgSetMessage()
396 BgPutString(4, 22, palette, temp); in BgSetMessage()
429 u16 temp; in BgColorString() local
440 temp = vscr[index]; in BgColorString()
441 temp &= 0x0fff; in BgColorString()
442 temp |= (palette << 12); in BgColorString()
443 vscr[index] = temp; in BgColorString()