Lines Matching refs:bitshift
268 int bitshift; in mmc_spi_response_get() local
315 bitshift = 0; in mmc_spi_response_get()
329 bitshift++; in mmc_spi_response_get()
379 if (bitshift) { in mmc_spi_response_get()
381 rotator |= *cp << bitshift; in mmc_spi_response_get()
402 if (bitshift) { in mmc_spi_response_get()
403 rotator |= *cp++ << bitshift; in mmc_spi_response_get()
784 unsigned int bitshift; in mmc_spi_readblock() local
805 bitshift = 7; in mmc_spi_readblock()
808 bitshift--; in mmc_spi_readblock()
832 if (bitshift) { in mmc_spi_readblock()
838 unsigned int bitright = 8 - bitshift; in mmc_spi_readblock()
842 *cp++ = leftover | (temp >> bitshift); in mmc_spi_readblock()
847 *cp++ = leftover | (temp >> bitshift); in mmc_spi_readblock()
850 *cp = leftover | (temp >> bitshift); in mmc_spi_readblock()