Home | History | Annotate | Download | only in VideoDxe

Lines Matching refs:BufferIndex

1096   UINT8  *BufferIndex;

1144 BufferIndex = &EdidDataBlock->StandardTimingIdentification[0];
1150 if ((BufferIndex[0] != 0x1) && (BufferIndex[1] != 0x1)){
1154 HorizontalResolution = (UINT16) (BufferIndex[0] * 8 + 248);
1155 AspectRatio = (UINT8) (BufferIndex[1] >> 6);
1173 RefreshRate = (UINT8) ((BufferIndex[1] & 0x1f) + 60);
1181 BufferIndex += 2;
1187 BufferIndex = &EdidDataBlock->DetailedTimingDescriptions[0];
1188 for (Index = 0; Index < 4; Index ++, BufferIndex += VESA_BIOS_EXTENSIONS_DETAILED_TIMING_EACH_DESCRIPTOR_SIZE) {
1189 if ((BufferIndex[0] == 0x0) && (BufferIndex[1] == 0x0)) {
1199 TempTiming.HorizontalResolution = ((UINT16)(BufferIndex[4] & 0xF0) << 4) | (BufferIndex[2]);
1200 TempTiming.VerticalResolution = ((UINT16)(BufferIndex[7] & 0xF0) << 4) | (BufferIndex[5]);