Searched refs:XXH64_round (Results 1 – 2 of 2) sorted by relevance
/openbmc/qemu/include/qemu/ |
H A D | xxhash.h | 181 static inline uint64_t XXH64_round(uint64_t acc, uint64_t input) in XXH64_round() function 188 return (acc ^ XXH64_round(0, val)) * XXH_PRIME64_1 + XXH_PRIME64_4; in XXH64_mergeround() 223 v1 = XXH64_round(v1, a); in qemu_xxhash64_4() 224 v2 = XXH64_round(v2, b); in qemu_xxhash64_4() 225 v3 = XXH64_round(v3, c); in qemu_xxhash64_4() 226 v4 = XXH64_round(v4, d); in qemu_xxhash64_4()
|
/openbmc/qemu/migration/ |
H A D | dirtyrate.c | 369 v1 = XXH64_round(v1, p[i + 0]); in compute_page_hash() 370 v2 = XXH64_round(v2, p[i + 1]); in compute_page_hash() 371 v3 = XXH64_round(v3, p[i + 2]); in compute_page_hash() 372 v4 = XXH64_round(v4, p[i + 3]); in compute_page_hash()
|