Lines Matching refs:PRIME64_1
70 static const uint64_t PRIME64_1 = 11400714785074694791ULL; variable
145 acc *= PRIME64_1; in xxh64_round()
153 acc = acc * PRIME64_1 + PRIME64_4; in xxh64_merge_round()
165 uint64_t v1 = seed + PRIME64_1 + PRIME64_2; in xxh64()
168 uint64_t v4 = seed - PRIME64_1; in xxh64()
198 h64 = xxh_rotl64(h64, 27) * PRIME64_1 + PRIME64_4; in xxh64()
203 h64 ^= (uint64_t)(get_unaligned_le32(p)) * PRIME64_1; in xxh64()
210 h64 = xxh_rotl64(h64, 11) * PRIME64_1; in xxh64()
233 state.v1 = seed + PRIME64_1 + PRIME64_2; in xxh64_reset()
236 state.v4 = seed - PRIME64_1; in xxh64_reset()
337 h64 = xxh_rotl64(h64, 27) * PRIME64_1 + PRIME64_4; in xxh64_digest()
342 h64 ^= (uint64_t)(get_unaligned_le32(p)) * PRIME64_1; in xxh64_digest()
349 h64 = xxh_rotl64(h64, 11) * PRIME64_1; in xxh64_digest()