Lines Matching refs:v3
97 uint32_t v3 = seed + 0; in xxh32() local
105 v3 = xxh32_round(v3, get_unaligned_le32(p)); in xxh32()
112 xxh_rotl32(v3, 12) + xxh_rotl32(v4, 18); in xxh32()
167 uint64_t v3 = seed + 0; in xxh64() local
175 v3 = xxh64_round(v3, get_unaligned_le64(p)); in xxh64()
182 xxh_rotl64(v3, 12) + xxh_rotl64(v4, 18); in xxh64()
185 h64 = xxh64_merge_round(h64, v3); in xxh64()
235 state.v3 = seed + 0; in xxh64_reset()
267 state->v3 = xxh64_round(state->v3, get_unaligned_le64(p64)); in xxh64_update()
279 uint64_t v3 = state->v3; in xxh64_update() local
287 v3 = xxh64_round(v3, get_unaligned_le64(p)); in xxh64_update()
295 state->v3 = v3; in xxh64_update()
318 const uint64_t v3 = state->v3; in xxh64_digest() local
322 xxh_rotl64(v3, 12) + xxh_rotl64(v4, 18); in xxh64_digest()
325 h64 = xxh64_merge_round(h64, v3); in xxh64_digest()
328 h64 = state->v3 + PRIME64_5; in xxh64_digest()