Lines Matching defs:buf
47 #define insb(port, buf, ns) _insb((u8 *)((port)+_IO_BASE), (buf), (ns)) argument
48 #define outsb(port, buf, ns) _outsb((u8 *)((port)+_IO_BASE), (buf), (ns)) argument
49 #define insw(port, buf, ns) _insw_ns((u16 *)((port)+_IO_BASE), (buf), (ns)) argument
50 #define outsw(port, buf, ns) _outsw_ns((u16 *)((port)+_IO_BASE), (buf), (ns)) argument
51 #define insl(port, buf, nl) _insl_ns((u32 *)((port)+_IO_BASE), (buf), (nl)) argument
52 #define outsl(port, buf, nl) _outsl_ns((u32 *)((port)+_IO_BASE), (buf), (nl)) argument
70 static inline void _insb(volatile u8 * port, void *buf, int ns) in _insb()
77 static inline void _outsb(volatile u8 * port, const void *buf, int ns) in _outsb()
84 static inline void _insw(volatile u16 * port, void *buf, int ns) in _insw()
91 static inline void _outsw(volatile u16 * port, const void *buf, int ns) in _outsw()
100 static inline void _insl(volatile u32 * port, void *buf, int nl) in _insl()
107 static inline void _outsl(volatile u32 * port, const void *buf, int nl) in _outsl()
116 static inline void _insw_ns(volatile u16 * port, void *buf, int ns) in _insw_ns()
123 static inline void _outsw_ns(volatile u16 * port, const void *buf, int ns) in _outsw_ns()
131 static inline void _insl_ns(volatile u32 * port, void *buf, int nl) in _insl_ns()
138 static inline void _outsl_ns(volatile u32 * port, const void *buf, int nl) in _outsl_ns()
152 #define insw_ns(port, buf, ns) _insw_ns((u16 *)((port)+_IO_BASE), (buf), (ns)) argument
153 #define outsw_ns(port, buf, ns) _outsw_ns((u16 *)((port)+_IO_BASE), (buf), (ns)) argument
154 #define insl_ns(port, buf, nl) _insl_ns((u32 *)((port)+_IO_BASE), (buf), (nl)) argument
155 #define outsl_ns(port, buf, nl) _outsl_ns((u32 *)((port)+_IO_BASE), (buf), (nl)) argument