Lines Matching refs:outb
112 outb(0x3c4, 0x02); in VGLSetXY()
113 outb(0x3c5, 0x01 << (x&0x3)); in VGLSetXY()
122 outb(0x3c4, 0x02); outb(0x3c5, 0x0f); in VGLSetXY()
123 outb(0x3ce, 0x00); outb(0x3cf, (byte)color & 0x0f); /* set/reset */ in VGLSetXY()
124 outb(0x3ce, 0x01); outb(0x3cf, 0x0f); /* set/reset enable */ in VGLSetXY()
125 outb(0x3ce, 0x08); outb(0x3cf, 0x80 >> (x%8)); /* bit mask */ in VGLSetXY()
503 outb(0x3c6, 0xff); in VGLClear()
504 outb(0x3c4, 0x02); outb(0x3c5, 0x0f); in VGLClear()
513 outb(0x3c4, 0x02); outb(0x3c5, 0x0f); in VGLClear()
514 outb(0x3ce, 0x05); outb(0x3cf, 0x02); /* mode 2 */ in VGLClear()
515 outb(0x3ce, 0x01); outb(0x3cf, 0x00); /* set/reset enable */ in VGLClear()
516 outb(0x3ce, 0x08); outb(0x3cf, 0xff); /* bit mask */ in VGLClear()
524 outb(0x3ce, 0x05); outb(0x3cf, 0x00); in VGLClear()
564 outb(0x3C6, 0xFF); in VGLRestorePalette()
566 outb(0x3C8, 0x00); in VGLRestorePalette()
568 outb(0x3C9, VGLSavePaletteRed[i]); in VGLRestorePalette()
570 outb(0x3C9, VGLSavePaletteGreen[i]); in VGLRestorePalette()
572 outb(0x3C9, VGLSavePaletteBlue[i]); in VGLRestorePalette()
576 outb(0x3C0, 0x20); in VGLRestorePalette()
586 outb(0x3C6, 0xFF); in VGLSavePalette()
588 outb(0x3C7, 0x00); in VGLSavePalette()
598 outb(0x3C0, 0x20); in VGLSavePalette()
614 outb(0x3C6, 0xFF); in VGLSetPalette()
616 outb(0x3C8, 0x00); in VGLSetPalette()
618 outb(0x3C9, VGLSavePaletteRed[i]); in VGLSetPalette()
620 outb(0x3C9, VGLSavePaletteGreen[i]); in VGLSetPalette()
622 outb(0x3C9, VGLSavePaletteBlue[i]); in VGLSetPalette()
626 outb(0x3C0, 0x20); in VGLSetPalette()
638 outb(0x3C6, 0xFF); in VGLSetPaletteIndex()
640 outb(0x3C8, color); in VGLSetPaletteIndex()
641 outb(0x3C9, red); outb(0x3C9, green); outb(0x3C9, blue); in VGLSetPaletteIndex()
643 outb(0x3C0, 0x20); in VGLSetPaletteIndex()
659 outb(0x3C0,0x11); outb(0x3C0, color); in VGLSetBorder()
661 outb(0x3C0, 0x20); in VGLSetBorder()
681 outb(0x3C4, 0x01); val = inb(0x3C5); outb(0x3C4, 0x01); in VGLBlankDisplay()
682 outb(0x3C5, ((blank) ? (val |= 0x20) : (val &= 0xDF))); in VGLBlankDisplay()