Lines Matching refs:xxh64_round
156 static uint64_t xxh64_round(uint64_t acc, const uint64_t input) in xxh64_round() function
166 val = xxh64_round(0, val); in xxh64_merge_round()
186 v1 = xxh64_round(v1, get_unaligned_le64(p)); in xxh64()
188 v2 = xxh64_round(v2, get_unaligned_le64(p)); in xxh64()
190 v3 = xxh64_round(v3, get_unaligned_le64(p)); in xxh64()
192 v4 = xxh64_round(v4, get_unaligned_le64(p)); in xxh64()
210 const uint64_t k1 = xxh64_round(0, get_unaligned_le64(p)); in xxh64()
292 state->v1 = xxh64_round(state->v1, get_unaligned_le64(p64)); in xxh64_update()
294 state->v2 = xxh64_round(state->v2, get_unaligned_le64(p64)); in xxh64_update()
296 state->v3 = xxh64_round(state->v3, get_unaligned_le64(p64)); in xxh64_update()
298 state->v4 = xxh64_round(state->v4, get_unaligned_le64(p64)); in xxh64_update()
312 v1 = xxh64_round(v1, get_unaligned_le64(p)); in xxh64_update()
314 v2 = xxh64_round(v2, get_unaligned_le64(p)); in xxh64_update()
316 v3 = xxh64_round(v3, get_unaligned_le64(p)); in xxh64_update()
318 v4 = xxh64_round(v4, get_unaligned_le64(p)); in xxh64_update()
363 const uint64_t k1 = xxh64_round(0, get_unaligned_le64(p)); in xxh64_digest()