Lines Matching defs:buffer
251 static inline void insb(unsigned long port, void *buffer, int count)
254 u8 *buf = buffer;
262 static inline void insw(unsigned long port, void *buffer, int count)
265 u16 *buf = buffer;
273 static inline void insl(unsigned long port, void *buffer, int count)
276 u32 *buf = buffer;
284 static inline void outsb(unsigned long port, const void *buffer, int count)
287 const u8 *buf = buffer;
294 static inline void outsw(unsigned long port, const void *buffer, int count)
297 const u16 *buf = buffer;
304 static inline void outsl(unsigned long port, const void *buffer, int count)
307 const u32 *buf = buffer;