Home | History | Annotate | Download | only in lib

Lines Matching refs:seed

22 	unsigned int seed;
26 static uint32_t bloom_crc32c(const void *buf, uint32_t len, uint32_t seed)
31 static uint32_t bloom_fnv(const void *buf, uint32_t len, uint32_t seed)
33 return fnv(buf, len, seed);
40 .seed = BLOOM_SEED,
44 .seed = BLOOM_SEED,
48 .seed = BLOOM_SEED,
52 .seed = BLOOM_SEED,
56 .seed = BLOOM_SEED,
96 hash[i] = hashes[i].fn(data, len, hashes[i].seed);