Searched refs:acc (Results 1 – 1 of 1) sorted by relevance
156 static uint64_t xxh64_round(uint64_t acc, const uint64_t input) in xxh64_round() argument158 acc += input * PRIME64_2; in xxh64_round()159 acc = xxh_rotl64(acc, 31); in xxh64_round()160 acc *= PRIME64_1; in xxh64_round()161 return acc; in xxh64_round()164 static uint64_t xxh64_merge_round(uint64_t acc, uint64_t val) in xxh64_merge_round() argument167 acc ^= val; in xxh64_merge_round()168 acc = acc * PRIME64_1 + PRIME64_4; in xxh64_merge_round()169 return acc; in xxh64_merge_round()