Lines Matching refs:ioBase
606 extern _X_EXPORT volatile unsigned char *ioBase;
716 if (ioBase == MAP_FAILED) in outb()
718 xf86WriteMmio8((void *) ioBase, port, value); in outb()
724 if (ioBase == MAP_FAILED) in outw()
726 xf86WriteMmio16Le((void *) ioBase, port, value); in outw()
732 if (ioBase == MAP_FAILED) in outl()
734 xf86WriteMmio32Le((void *) ioBase, port, value); in outl()
740 if (ioBase == MAP_FAILED) in inb()
742 return xf86ReadMmio8((void *) ioBase, port); in inb()
748 if (ioBase == MAP_FAILED) in inw()
750 return xf86ReadMmio16Le((void *) ioBase, port); in inw()
756 if (ioBase == MAP_FAILED) in inl()
758 return xf86ReadMmio32Le((void *) ioBase, port); in inl()