Lines Matching refs:b
65 static inline void _ne_outb(unsigned char b, void *portp) in _ne_outb() argument
67 *(volatile unsigned short *)portp = (unsigned short)b; in _ne_outb()
82 unsigned char b; in _inb() local
83 pcc_ioread(0, port, &b, sizeof(b), 1, 0); in _inb()
84 return b; in _inb()
86 unsigned char b; in _inb() local
87 pcc_ioread(1, port, &b, sizeof(b), 1, 0); in _inb()
88 return b; in _inb()
151 void _outb(unsigned char b, unsigned long port) in _outb() argument
154 _ne_outb(b, PORT2ADDR_NE(port)); in _outb()
158 pcc_iowrite(0, port, &b, sizeof(b), 1, 0); in _outb()
160 pcc_iowrite(1, port, &b, sizeof(b), 1, 0); in _outb()
163 *(volatile unsigned char *)PORT2ADDR(port) = b; in _outb()
193 void _outb_p(unsigned char b, unsigned long port) in _outb_p() argument
195 _outb(b, port); in _outb_p()