Lines Matching refs:buf
54 unsigned char *buf = addr; in _ne_insb() local
56 *buf++ = *(volatile unsigned char *)(portp+1); in _ne_insb()
156 unsigned char *buf = addr; in _insb() local
159 *buf++ = *(volatile unsigned char *)portp; in _insb()
165 unsigned short *buf = addr; in _insw() local
171 *buf++ = _ne_inw(portp); in _insw()
175 *buf++ = *(volatile unsigned short *)portp; in _insw()
181 unsigned long *buf = addr; in _insl() local
186 *buf++ = *(volatile unsigned long *)portp; in _insl()
191 const unsigned char *buf = addr; in _outsb() local
197 _ne_outb(*buf++, portp); in _outsb()
201 *(volatile unsigned char *)portp = *buf++; in _outsb()
207 const unsigned short *buf = addr; in _outsw() local
213 _ne_outw(*buf++, portp); in _outsw()
217 *(volatile unsigned short *)portp = *buf++; in _outsw()
223 const unsigned long *buf = addr; in _outsl() local
228 *(volatile unsigned long *)portp = *buf++; in _outsl()