Lines Matching full:seed
181 * The seed is an 4 longword (32 bits) "secret" which can be used to
182 * uniquify a hash. If the seed is all zero's, then some default seed
185 * A particular hash version specifies whether or not the seed is
190 const __u32 *seed,
201 /* Initialize the default seed for the hash checksum functions */
207 /* Check to see if the seed is all zero's */
208 if (seed) {
210 if (seed[i])
214 memcpy(buf, seed, sizeof(buf));