bwl                38 arch/m68k/include/asm/uaccess_mm.h #define __put_user_asm(res, x, ptr, bwl, reg, err)	\
bwl                40 arch/m68k/include/asm/uaccess_mm.h 	"1:	"MOVES"."#bwl"	%2,%1\n"		\
bwl               109 arch/m68k/include/asm/uaccess_mm.h #define __get_user_asm(res, x, ptr, type, bwl, reg, err) ({		\
bwl               112 arch/m68k/include/asm/uaccess_mm.h 		"1:	"MOVES"."#bwl"	%2,%1\n"			\
bwl                66 arch/m68k/include/asm/uaccess_no.h #define __put_user_asm(err,x,ptr,bwl)				\
bwl                67 arch/m68k/include/asm/uaccess_no.h 	__asm__ ("move" #bwl " %0,%1"				\
bwl               100 arch/m68k/include/asm/uaccess_no.h #define __get_user_asm(err,x,ptr,bwl,reg)			\
bwl               101 arch/m68k/include/asm/uaccess_no.h 	__asm__ ("move" #bwl " %1,%0"				\
bwl               279 arch/x86/include/asm/io.h #define BUILDIO(bwl, bw, type)						\
bwl               280 arch/x86/include/asm/io.h static inline void out##bwl(unsigned type value, int port)		\
bwl               282 arch/x86/include/asm/io.h 	asm volatile("out" #bwl " %" #bw "0, %w1"			\
bwl               286 arch/x86/include/asm/io.h static inline unsigned type in##bwl(int port)				\
bwl               289 arch/x86/include/asm/io.h 	asm volatile("in" #bwl " %w1, %" #bw "0"			\
bwl               294 arch/x86/include/asm/io.h static inline void out##bwl##_p(unsigned type value, int port)		\
bwl               296 arch/x86/include/asm/io.h 	out##bwl(value, port);						\
bwl               300 arch/x86/include/asm/io.h static inline unsigned type in##bwl##_p(int port)			\
bwl               302 arch/x86/include/asm/io.h 	unsigned type value = in##bwl(port);				\
bwl               307 arch/x86/include/asm/io.h static inline void outs##bwl(int port, const void *addr, unsigned long count) \
bwl               312 arch/x86/include/asm/io.h 			out##bwl(*value, port);				\
bwl               317 arch/x86/include/asm/io.h 		asm volatile("rep; outs" #bwl				\
bwl               323 arch/x86/include/asm/io.h static inline void ins##bwl(int port, void *addr, unsigned long count)	\
bwl               328 arch/x86/include/asm/io.h 			*value = in##bwl(port);				\
bwl               333 arch/x86/include/asm/io.h 		asm volatile("rep; ins" #bwl				\