Home
last modified time | relevance | path

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

/linux/lib/
H A Dxxhash.c91 uint32_t h32; in xxh32() local
111 h32 = xxh_rotl32(v1, 1) + xxh_rotl32(v2, 7) + in xxh32()
114 h32 = seed + PRIME32_5; in xxh32()
117 h32 += (uint32_t)len; in xxh32()
120 h32 += get_unaligned_le32(p) * PRIME32_3; in xxh32()
121 h32 = xxh_rotl32(h32, 17) * PRIME32_4; in xxh32()
126 h32 += (*p) * PRIME32_5; in xxh32()
127 h32 = xxh_rotl32(h32, 11) * PRIME32_1; in xxh32()
131 h32 ^= h32 >> 15; in xxh32()
132 h32 *= PRIME32_2; in xxh32()
[all …]
/linux/lib/zstd/decompress/
H A Dzstd_decompress.c1329 U32 const h32 = (U32)xxh64_digest(&dctx->xxhState); in ZSTD_decompressContinue() local
1331 …TD_decompressContinue: checksum : calculated %08X :: %08X read", (unsigned)h32, (unsigned)check32); in ZSTD_decompressContinue()
1332 RETURN_ERROR_IF(check32 != h32, checksum_wrong, ""); in ZSTD_decompressContinue()