h32 106 lib/xxhash.c uint32_t h32; h32 126 lib/xxhash.c h32 = xxh_rotl32(v1, 1) + xxh_rotl32(v2, 7) + h32 129 lib/xxhash.c h32 = seed + PRIME32_5; h32 132 lib/xxhash.c h32 += (uint32_t)len; h32 135 lib/xxhash.c h32 += get_unaligned_le32(p) * PRIME32_3; h32 136 lib/xxhash.c h32 = xxh_rotl32(h32, 17) * PRIME32_4; h32 141 lib/xxhash.c h32 += (*p) * PRIME32_5; h32 142 lib/xxhash.c h32 = xxh_rotl32(h32, 11) * PRIME32_1; h32 146 lib/xxhash.c h32 ^= h32 >> 15; h32 147 lib/xxhash.c h32 *= PRIME32_2; h32 148 lib/xxhash.c h32 ^= h32 >> 13; h32 149 lib/xxhash.c h32 *= PRIME32_3; h32 150 lib/xxhash.c h32 ^= h32 >> 16; h32 152 lib/xxhash.c return h32; h32 344 lib/xxhash.c uint32_t h32; h32 347 lib/xxhash.c h32 = xxh_rotl32(state->v1, 1) + xxh_rotl32(state->v2, 7) + h32 350 lib/xxhash.c h32 = state->v3 /* == seed */ + PRIME32_5; h32 353 lib/xxhash.c h32 += state->total_len_32; h32 356 lib/xxhash.c h32 += get_unaligned_le32(p) * PRIME32_3; h32 357 lib/xxhash.c h32 = xxh_rotl32(h32, 17) * PRIME32_4; h32 362 lib/xxhash.c h32 += (*p) * PRIME32_5; h32 363 lib/xxhash.c h32 = xxh_rotl32(h32, 11) * PRIME32_1; h32 367 lib/xxhash.c h32 ^= h32 >> 15; h32 368 lib/xxhash.c h32 *= PRIME32_2; h32 369 lib/xxhash.c h32 ^= h32 >> 13; h32 370 lib/xxhash.c h32 *= PRIME32_3; h32 371 lib/xxhash.c h32 ^= h32 >> 16; h32 373 lib/xxhash.c return h32; h32 1838 lib/zstd/decompress.c U32 const h32 = (U32)xxh64_digest(&dctx->xxhState); h32 1840 lib/zstd/decompress.c if (check32 != h32)