byte_shift        706 drivers/acpi/bus.c 	int i, msk, byte_shift;
byte_shift        714 drivers/acpi/bus.c 		byte_shift = 8 * (3 - i);
byte_shift        715 drivers/acpi/bus.c 		msk = (id->cls_msk >> byte_shift) & 0xFF;
byte_shift        719 drivers/acpi/bus.c 		sprintf(buf, "%02x", (id->cls >> byte_shift) & msk);
byte_shift        159 drivers/mmc/host/sdhci-iproc.c 	u32 byte_shift = REG_OFFSET_IN_BITS(reg);
byte_shift        160 drivers/mmc/host/sdhci-iproc.c 	u32 mask = 0xff << byte_shift;
byte_shift        161 drivers/mmc/host/sdhci-iproc.c 	u32 newval = (oldval & ~mask) | (val << byte_shift);
byte_shift        157 drivers/spi/spi-meson-spicc.c 	unsigned int byte_shift = 0;
byte_shift        163 drivers/spi/spi-meson-spicc.c 		data |= (byte & 0xff) << byte_shift;
byte_shift        164 drivers/spi/spi-meson-spicc.c 		byte_shift += 8;
byte_shift        175 drivers/spi/spi-meson-spicc.c 	unsigned int byte_shift = 0;
byte_shift        179 drivers/spi/spi-meson-spicc.c 		byte = (data >> byte_shift) & 0xff;
byte_shift        181 drivers/spi/spi-meson-spicc.c 		byte_shift += 8;
byte_shift        551 scripts/mod/file2alias.c 		int i, byte_shift, cnt = 0;
byte_shift        557 scripts/mod/file2alias.c 			byte_shift = 8 * (3-i);
byte_shift        558 scripts/mod/file2alias.c 			msk = (*cls_msk >> byte_shift) & 0xFF;
byte_shift        561 scripts/mod/file2alias.c 					(*cls >> byte_shift) & 0xFF);