Lines Matching refs:tempbuff
607 uint8_t *tempbuff = pData; in HAL_SD_ReadBlocks() local
689 *tempbuff = (uint8_t)(data & 0xFFU); in HAL_SD_ReadBlocks()
690 tempbuff++; in HAL_SD_ReadBlocks()
691 *tempbuff = (uint8_t)((data >> 8U) & 0xFFU); in HAL_SD_ReadBlocks()
692 tempbuff++; in HAL_SD_ReadBlocks()
693 *tempbuff = (uint8_t)((data >> 16U) & 0xFFU); in HAL_SD_ReadBlocks()
694 tempbuff++; in HAL_SD_ReadBlocks()
695 *tempbuff = (uint8_t)((data >> 24U) & 0xFFU); in HAL_SD_ReadBlocks()
696 tempbuff++; in HAL_SD_ReadBlocks()
792 uint8_t *tempbuff = pData; in HAL_SD_WriteBlocks() local
873 data = (uint32_t)(*tempbuff); in HAL_SD_WriteBlocks()
874 tempbuff++; in HAL_SD_WriteBlocks()
875 data |= ((uint32_t)(*tempbuff) << 8U); in HAL_SD_WriteBlocks()
876 tempbuff++; in HAL_SD_WriteBlocks()
877 data |= ((uint32_t)(*tempbuff) << 16U); in HAL_SD_WriteBlocks()
878 tempbuff++; in HAL_SD_WriteBlocks()
879 data |= ((uint32_t)(*tempbuff) << 24U); in HAL_SD_WriteBlocks()
880 tempbuff++; in HAL_SD_WriteBlocks()