Home
last modified time | relevance | path

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

/openbmc/qemu/include/qemu/
H A Dxxhash.h40 #define PRIME32_2 2246822519U macro
54 uint32_t v1 = QEMU_XXHASH_SEED + PRIME32_1 + PRIME32_2; in qemu_xxhash8()
55 uint32_t v2 = QEMU_XXHASH_SEED + PRIME32_2; in qemu_xxhash8()
66 v1 += a * PRIME32_2; in qemu_xxhash8()
70 v2 += b * PRIME32_2; in qemu_xxhash8()
74 v3 += c * PRIME32_2; in qemu_xxhash8()
78 v4 += d * PRIME32_2; in qemu_xxhash8()
98 h32 *= PRIME32_2; in qemu_xxhash8()
/openbmc/linux/lib/
H A Dxxhash.c65 static const uint32_t PRIME32_2 = 2246822519U; variable
96 seed += input * PRIME32_2; in xxh32_round()
110 uint32_t v1 = seed + PRIME32_1 + PRIME32_2; in xxh32()
111 uint32_t v2 = seed + PRIME32_2; in xxh32()
147 h32 *= PRIME32_2; in xxh32()
248 state.v1 = seed + PRIME32_1 + PRIME32_2; in xxh32_reset()
249 state.v2 = seed + PRIME32_2; in xxh32_reset()
368 h32 *= PRIME32_2; in xxh32_digest()