Lines Matching refs:port
8 static __inline__ unsigned char inb(unsigned short port)
13 : "d" (port));
17 static __inline__ unsigned short inw(unsigned short port)
22 : "d" (port));
26 static __inline__ unsigned int inl(int port)
31 : "d" (port));
35 static __inline__ void outb(int port, unsigned char val)
40 "d" (port));
43 static __inline__ void outw(int port, unsigned short val)
48 "d" (port));
51 static __inline__ void outl(int port, unsigned int val)
56 "d" (port));
59 static __inline__ void insb(int port,void *buf,int cnt)
63 : "d" (port), "0" (buf), "1" (cnt) : "memory", "cc");
66 static __inline__ void insw(int port,void *buf,int cnt)
70 : "d" (port), "0" (buf), "1" (cnt) : "memory", "cc");
73 static __inline__ void insl(int port,void *buf,int cnt)
77 : "d" (port), "0" (buf), "1" (cnt) : "memory", "cc");
80 static __inline__ void outsb(int port,const void *buf,int cnt)
84 : "d" (port), "0" (buf), "1" (cnt) : "cc");
87 static __inline__ void outsw(int port,const void *buf,int cnt)
91 : "d" (port), "0" (buf), "1" (cnt) : "cc");
94 static __inline__ void outsl(int port,const void *buf,int cnt)
98 : "d" (port), "0" (buf), "1" (cnt) : "cc");