Lines Matching full:v2
96 uint32_t v2 = seed + PRIME32_2; in xxh32() local
103 v2 = xxh32_round(v2, get_unaligned_le32(p)); in xxh32()
111 h32 = xxh_rotl32(v1, 1) + xxh_rotl32(v2, 7) + in xxh32()
166 uint64_t v2 = seed + PRIME64_2; in xxh64() local
173 v2 = xxh64_round(v2, get_unaligned_le64(p)); in xxh64()
181 h64 = xxh_rotl64(v1, 1) + xxh_rotl64(v2, 7) + in xxh64()
184 h64 = xxh64_merge_round(h64, v2); in xxh64()
234 state.v2 = seed + PRIME64_2; in xxh64_reset()
265 state->v2 = xxh64_round(state->v2, get_unaligned_le64(p64)); in xxh64_update()
278 uint64_t v2 = state->v2; in xxh64_update() local
285 v2 = xxh64_round(v2, get_unaligned_le64(p)); in xxh64_update()
294 state->v2 = v2; in xxh64_update()
317 const uint64_t v2 = state->v2; in xxh64_digest() local
321 h64 = xxh_rotl64(v1, 1) + xxh_rotl64(v2, 7) + in xxh64_digest()
324 h64 = xxh64_merge_round(h64, v2); in xxh64_digest()