Lines Matching refs:temp
499 u16 temp[SHARED_DATA_SIZE / sizeof(u16)]; in PrintSharedData() local
514 MI_CpuCopy8(p, temp, SHARED_DATA_SIZE); in PrintSharedData()
516 "%04x%04x-%04x%04x", temp[0], temp[1], temp[2], temp[3]); in PrintSharedData()
612 char temp[32 + 2]; in PrintString() local
616 (void)vsnprintf(temp, 33, text, vlist); in PrintString()
619 *(u16 *)(&temp[32]) = 0x0000; in PrintString()
622 if (temp[i] == 0x00) in PrintString()
626 gScreen[((y * 32) + x + i) % (32 * 32)] = (u16)((palette << 12) | temp[i]); in PrintString()
645 u16 temp; in ColorString() local
654 temp = gScreen[index]; in ColorString()
655 temp &= 0x0fff; in ColorString()
656 temp |= (palette << 12); in ColorString()
657 gScreen[index] = temp; in ColorString()