Home
last modified time | relevance | path

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

/linux/lib/
H A Dxxhash.c141 static uint64_t xxh64_round(uint64_t acc, const uint64_t input) in xxh64_round() function
151 val = xxh64_round(0, val); in xxh64_merge_round()
171 v1 = xxh64_round(v1, get_unaligned_le64(p)); in xxh64()
173 v2 = xxh64_round(v2, get_unaligned_le64(p)); in xxh64()
175 v3 = xxh64_round(v3, get_unaligned_le64(p)); in xxh64()
177 v4 = xxh64_round(v4, get_unaligned_le64(p)); in xxh64()
195 const uint64_t k1 = xxh64_round(0, get_unaligned_le64(p)); in xxh64()
263 state->v1 = xxh64_round(state->v1, get_unaligned_le64(p64)); in xxh64_update()
265 state->v2 = xxh64_round(state->v2, get_unaligned_le64(p64)); in xxh64_update()
267 state->v3 = xxh64_round(state->v3, get_unaligned_le64(p64)); in xxh64_update()
[all …]