Lines Matching defs:buffer
249 static inline void insb(unsigned long port, void *buffer, int count)
252 u8 *buf = buffer;
260 static inline void insw(unsigned long port, void *buffer, int count)
263 u16 *buf = buffer;
271 static inline void insl(unsigned long port, void *buffer, int count)
274 u32 *buf = buffer;
282 static inline void outsb(unsigned long port, const void *buffer, int count)
285 const u8 *buf = buffer;
292 static inline void outsw(unsigned long port, const void *buffer, int count)
295 const u16 *buf = buffer;
302 static inline void outsl(unsigned long port, const void *buffer, int count)
305 const u32 *buf = buffer;