Lines Matching refs:portp
156 unsigned char *portp = PORT2ADDR(port); in _insb() local
158 *buf++ = *(volatile unsigned char *)portp; in _insb()
165 unsigned short *portp; in _insw() local
171 portp = PORT2ADDR(port); in _insw()
173 *buf++ = *(volatile unsigned short *)portp; in _insw()
180 unsigned long *portp; in _insl() local
182 portp = PORT2ADDR(port); in _insl()
184 *buf++ = *(volatile unsigned long *)portp; in _insl()
190 unsigned char *portp; in _outsb() local
196 portp = PORT2ADDR(port); in _outsb()
198 *(volatile unsigned char *)portp = *buf++; in _outsb()
205 unsigned short *portp; in _outsw() local
211 portp = PORT2ADDR(port); in _outsw()
213 *(volatile unsigned short *)portp = *buf++; in _outsw()
220 unsigned char *portp; in _outsl() local
222 portp = PORT2ADDR(port); in _outsl()
224 *(volatile unsigned long *)portp = *buf++; in _outsl()