Searched refs:crc (Results 1 – 4 of 4) sorted by relevance
17 #define CRC_GET_DIGEST(crc) ((crc) ^ CRC_INIT_VAL) argument18 #define CRC_UPDATE_BYTE(crc, b) (g_CrcTable[((crc) ^ (b)) & 0xFF] ^ ((crc) >> 8)) argument20 UInt32 MY_FAST_CALL CrcUpdate(UInt32 crc, const void *data, size_t size);
8 #define CRC_UPDATE_BYTE_2(crc, b) (table[((crc) ^ (b)) & 0xFF] ^ ((crc) >> 8)) argument
22 #define CRC_UPDATE_BYTE_2(crc, b) (table[((crc) ^ (b)) & 0xFF] ^ ((crc) >> 8)) argument
1498 ZEXTERN uLong ZEXPORT crc32 OF((uLong crc, const Bytef *buf, uInt len));