Home
last modified time | relevance | path

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

/external/lzma/C/
D7zCrcOpt.c62 #define CRC_UINT32_SWAP(v) ((v >> 24) | ((v >> 8) & 0xFF00) | ((v << 8) & 0xFF0000) | (v << 24)) macro
70 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()
D7zCrc.c16 #define CRC_UINT32_SWAP(v) ((v >> 24) | ((v >> 8) & 0xFF00) | ((v << 8) & 0xFF0000) | (v << 24)) macro
115 g_CrcTable[i] = CRC_UINT32_SWAP(x); in CrcGenerateTable()