Lines Matching refs:tempData
1281 uint32_t tempData = 0UL; in SEMC_IPCommandNandWrite() local
1306 tempData <<= SEMC_BYTE_NUMBIT; in SEMC_IPCommandNandWrite()
1307 tempData |= data[size_bytes]; in SEMC_IPCommandNandWrite()
1310 result = SEMC_SendIPCommand(base, kSEMC_MemType_NAND, address, ipCmd, tempData, NULL); in SEMC_IPCommandNandWrite()
1330 uint32_t tempData = 0; in SEMC_IPCommandNandRead() local
1352 result = SEMC_SendIPCommand(base, kSEMC_MemType_NAND, address, ipCmd, 0, &tempData); in SEMC_IPCommandNandRead()
1357 *(data + size_bytes) = (uint8_t)((tempData >> (SEMC_BYTE_NUMBIT * size_bytes)) & 0xFFU); in SEMC_IPCommandNandRead()
1376 uint32_t tempData = 0; in SEMC_IPCommandNorRead() local
1399 … SEMC_SendIPCommand(base, kSEMC_MemType_NOR, address, (uint16_t)kSEMC_NORDBICM_Read, 0, &tempData); in SEMC_IPCommandNorRead()
1403 *(data + size_bytes) = (uint8_t)((tempData >> (SEMC_BYTE_NUMBIT * size_bytes)) & 0xFFU); in SEMC_IPCommandNorRead()
1423 uint32_t tempData = 0; in SEMC_IPCommandNorWrite() local
1448 … tempData |= ((uint32_t) * (data + size_bytes - 1U) << ((size_bytes - 1U) * SEMC_BYTE_NUMBIT)); in SEMC_IPCommandNorWrite()
1452 …MC_SendIPCommand(base, kSEMC_MemType_NOR, address, (uint16_t)kSEMC_NORDBICM_Write, tempData, NULL); in SEMC_IPCommandNorWrite()