Lines Matching defs:VideoTable
341 unsigned int VideoTable,
347 if (VideoTable > 0)
349 switch (BIOSByte(VideoTable - 0x02U))
352 pATI->Tuner = BIOSByte(VideoTable) & 0x1FU;
355 * XXX The VideoTable[1] byte is known to have been
362 pATI->Decoder = BIOSByte(VideoTable + 0x01U) & 0x07U;
363 pATI->Audio = BIOSByte(VideoTable + 0x02U) & 0x0FU;
367 pATI->Decoder = BIOSByte(VideoTable + 0x02U) & 0x07U;
368 pATI->Audio = BIOSByte(VideoTable + 0x03U) & 0x0FU;
375 pATI->Tuner = BIOSByte(VideoTable) & 0x1FU;
376 pATI->Audio = BIOSByte(VideoTable + 0x01U) & 0x0FU;
377 pATI->Decoder = BIOSByte(VideoTable + 0x05U) & 0x0FU;
515 unsigned int LCDTable = 0, VideoTable = 0;
966 VideoTable = BIOSWord(ROMTable + 0x46U);
967 if ((VideoTable < 0x08U) ||
968 (BIOSByte(VideoTable - 0x01U) < 0x08U) ||
969 (BIOSByte(VideoTable - 0x02U) > 0x01U) ||
970 ((VideoTable + BIOSByte(VideoTable - 0x01U)) > BIOSSize))
971 VideoTable = 0;
990 ati_bios_mmedia(pScreenInfo, pATI, BIOS, VideoTable, HardwareTable);
1011 "BIOS Data: VideoTable=0x%04X, HardwareTable=0x%04X.\n",
1012 VideoTable, HardwareTable);