Home
last modified time | relevance | path

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

/linux-6.6.21/lib/
Dxxhash.c156 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()
399 state->v1 = xxh64_round(state->v1, get_unaligned_le64(p64)); in xxh64_update()
401 state->v2 = xxh64_round(state->v2, get_unaligned_le64(p64)); in xxh64_update()
403 state->v3 = xxh64_round(state->v3, get_unaligned_le64(p64)); in xxh64_update()
[all …]