__shft             56 drivers/mmc/core/mmc.c 		const int __shft = (start) & 31;			\
__shft             59 drivers/mmc/core/mmc.c 		__res = resp[__off] >> __shft;				\
__shft             60 drivers/mmc/core/mmc.c 		if (__size + __shft > 32)				\
__shft             61 drivers/mmc/core/mmc.c 			__res |= resp[__off-1] << ((32 - __shft) % 32);	\
__shft             60 drivers/mmc/core/sd.c 		const int __shft = (start) & 31;			\
__shft             63 drivers/mmc/core/sd.c 		__res = resp[__off] >> __shft;				\
__shft             64 drivers/mmc/core/sd.c 		if (__size + __shft > 32)				\
__shft             65 drivers/mmc/core/sd.c 			__res |= resp[__off-1] << ((32 - __shft) % 32);	\