Lines Matching full:seed
85 * xxh32() - calculate the 32-bit hash of the input with a given seed.
89 * @seed: The seed can be used to alter the result predictably.
95 uint32_t xxh32(const void *input, size_t length, uint32_t seed);
98 * xxh64() - calculate the 64-bit hash of the input with a given seed.
102 * @seed: The seed can be used to alter the result predictably.
108 uint64_t xxh64(const void *input, size_t length, uint64_t seed);
111 * xxhash() - calculate wordsize hash of the input with a given seed
114 * @seed: The seed can be used to alter the result predictably.
124 uint64_t seed) in xxhash() argument
127 return xxh64(input, length, seed); in xxhash()
129 return xxh32(input, length, seed); in xxhash()
174 * @seed: Initialize the hash state with this seed.
178 void xxh32_reset(struct xxh32_state *state, uint32_t seed);
210 * @seed: Initialize the hash state with this seed.
212 void xxh64_reset(struct xxh64_state *state, uint64_t seed);