Home
last modified time | relevance | path

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

/lib/
Dxxhash.c106 uint32_t h32; in xxh32() local
126 h32 = xxh_rotl32(v1, 1) + xxh_rotl32(v2, 7) + in xxh32()
129 h32 = seed + PRIME32_5; in xxh32()
132 h32 += (uint32_t)len; in xxh32()
135 h32 += get_unaligned_le32(p) * PRIME32_3; in xxh32()
136 h32 = xxh_rotl32(h32, 17) * PRIME32_4; in xxh32()
141 h32 += (*p) * PRIME32_5; in xxh32()
142 h32 = xxh_rotl32(h32, 11) * PRIME32_1; in xxh32()
146 h32 ^= h32 >> 15; in xxh32()
147 h32 *= PRIME32_2; in xxh32()
[all …]
/lib/zstd/
Ddecompress.c1838 U32 const h32 = (U32)xxh64_digest(&dctx->xxhState); in ZSTD_decompressContinue() local
1840 if (check32 != h32) in ZSTD_decompressContinue()