Lines Matching refs:tempbuff
623 uint8_t *tempbuff = pData; in HAL_MMC_ReadBlocks() local
715 *tempbuff = (uint8_t)(data & 0xFFU); in HAL_MMC_ReadBlocks()
716 tempbuff++; in HAL_MMC_ReadBlocks()
717 *tempbuff = (uint8_t)((data >> 8U) & 0xFFU); in HAL_MMC_ReadBlocks()
718 tempbuff++; in HAL_MMC_ReadBlocks()
719 *tempbuff = (uint8_t)((data >> 16U) & 0xFFU); in HAL_MMC_ReadBlocks()
720 tempbuff++; in HAL_MMC_ReadBlocks()
721 *tempbuff = (uint8_t)((data >> 24U) & 0xFFU); in HAL_MMC_ReadBlocks()
722 tempbuff++; in HAL_MMC_ReadBlocks()
819 const uint8_t *tempbuff = pData; in HAL_MMC_WriteBlocks() local
909 data = (uint32_t)(*tempbuff); in HAL_MMC_WriteBlocks()
910 tempbuff++; in HAL_MMC_WriteBlocks()
911 data |= ((uint32_t)(*tempbuff) << 8U); in HAL_MMC_WriteBlocks()
912 tempbuff++; in HAL_MMC_WriteBlocks()
913 data |= ((uint32_t)(*tempbuff) << 16U); in HAL_MMC_WriteBlocks()
914 tempbuff++; in HAL_MMC_WriteBlocks()
915 data |= ((uint32_t)(*tempbuff) << 24U); in HAL_MMC_WriteBlocks()
916 tempbuff++; in HAL_MMC_WriteBlocks()