Home
last modified time | relevance | path

Searched refs:tempCrc (Results 1 – 1 of 1) sorted by relevance

/hardware/st/secure_element/ese-spi-driver/utils-lib/
DIso13239CRC.cc36 uint16_t tempCrc; in computeCrc() local
38 tempCrc = (unsigned short)CRC_PRESET; in computeCrc()
42 tempCrc = tempCrc ^ ((unsigned short)data[i]); in computeCrc()
44 if ((tempCrc & 0x0001) == 0x0001) { in computeCrc()
45 tempCrc = (tempCrc >> 1) ^ CRC_POLYNOMIAL; in computeCrc()
47 tempCrc = tempCrc >> 1; in computeCrc()
51 tempCrc = ~tempCrc; in computeCrc()
52 data[len] = (uint8_t)tempCrc; in computeCrc()
53 data[len + 1] = (uint8_t)(tempCrc >> 8); in computeCrc()
55 return tempCrc; in computeCrc()