Home | History | Annotate | Download | only in WinNtGopDxe

Lines Matching refs:Front

50   Queue->Front = 0;

70 Queue->Front = 0;
96 if ((Queue->Rear + 1) % MAX_Q == Queue->Front) {
128 if (Queue->Front == Queue->Rear) {
133 CopyMem (Key, &Queue->Q[Queue->Front], sizeof (EFI_KEY_DATA));
134 Queue->Front = (Queue->Front + 1) % MAX_Q;
165 if (Queue->Front == Queue->Rear) {
659 if (Private->QueueForRead.Q[Private->QueueForRead.Front].Key.ScanCode == SCAN_NULL &&
660 Private->QueueForRead.Q[Private->QueueForRead.Front].Key.UnicodeChar == CHAR_NULL) {