Lines Matching refs:buf
59 static __inline__ void insb(int port,void *buf,int cnt)
62 : "=D" (buf), "=c" (cnt)
63 : "d" (port), "0" (buf), "1" (cnt) : "memory", "cc");
66 static __inline__ void insw(int port,void *buf,int cnt)
69 : "=D" (buf), "=c" (cnt)
70 : "d" (port), "0" (buf), "1" (cnt) : "memory", "cc");
73 static __inline__ void insl(int port,void *buf,int cnt)
76 : "=D" (buf), "=c" (cnt)
77 : "d" (port), "0" (buf), "1" (cnt) : "memory", "cc");
80 static __inline__ void outsb(int port,const void *buf,int cnt)
83 : "=S" (buf), "=c" (cnt)
84 : "d" (port), "0" (buf), "1" (cnt) : "cc");
87 static __inline__ void outsw(int port,const void *buf,int cnt)
90 : "=S" (buf), "=c" (cnt)
91 : "d" (port), "0" (buf), "1" (cnt) : "cc");
94 static __inline__ void outsl(int port,const void *buf,int cnt)
97 : "=S" (buf), "=c" (cnt)
98 : "d" (port), "0" (buf), "1" (cnt) : "cc");