Searched refs:CRC_UINT32_SWAP (Results 1 – 2 of 2) sorted by relevance
62 #define CRC_UINT32_SWAP(v) ((v >> 24) | ((v >> 8) & 0xFF00) | ((v << 8) & 0xFF0000) | (v << 24)) macro70 v = CRC_UINT32_SWAP(v); in CrcUpdateT1_BeT4()84 return CRC_UINT32_SWAP(v); in CrcUpdateT1_BeT4()91 v = CRC_UINT32_SWAP(v); in CrcUpdateT1_BeT8()112 return CRC_UINT32_SWAP(v); in CrcUpdateT1_BeT8()
16 #define CRC_UINT32_SWAP(v) ((v >> 24) | ((v >> 8) & 0xFF00) | ((v << 8) & 0xFF0000) | (v << 24)) macro115 g_CrcTable[i] = CRC_UINT32_SWAP(x); in CrcGenerateTable()