Lines Matching refs:temp
466 u16 temp[SHARED_DATA_SIZE / sizeof(u16)]; in PrintSharedData() local
481 MI_CpuCopy8(p, temp, SHARED_DATA_SIZE); in PrintSharedData()
483 "%04x%04x-%04x%04x", temp[0], temp[1], temp[2], temp[3]); in PrintSharedData()
579 char temp[32 + 2]; in PrintString() local
583 (void)vsnprintf(temp, 33, text, vlist); in PrintString()
586 *(u16 *)(&temp[32]) = 0x0000; in PrintString()
589 if (temp[i] == 0x00) in PrintString()
593 gScreen[((y * 32) + x + i) % (32 * 32)] = (u16)((palette << 12) | temp[i]); in PrintString()
612 u16 temp; in ColorString() local
621 temp = gScreen[index]; in ColorString()
622 temp &= 0x0fff; in ColorString()
623 temp |= (palette << 12); in ColorString()
624 gScreen[index] = temp; in ColorString()