MCPcopy Create free account
hub / github.com/F-Stack/f-stack / crc64

Function crc64

app/redis-6.2.6/src/crc64.c:121–123  ·  view source on GitHub ↗

Compute crc64 */

Source from the content-addressed store, hash-verified

119
120/* Compute crc64 */
121uint64_t crc64(uint64_t crc, const unsigned char *s, uint64_t l) {
122 return crcspeed64native(crc64_table, crc, (void *) s, l);
123}
124
125/* Test main */
126#ifdef REDIS_TEST

Callers 6

crc64HashFunction · 0.85
redisBuildIdFunction · 0.85
rioGenericUpdateChecksumFunction · 0.85
createDumpPayloadFunction · 0.85
verifyDumpPayloadFunction · 0.85
crc64TestFunction · 0.85

Calls 1

crcspeed64nativeFunction · 0.85

Tested by

no test coverage detected