Lines Matching defs:state_seed
305 u_long *state_seed;
306 KMALLOCS(state_seed, u_long *, state_size * sizeof(*state_seed));
307 if (state_seed == NULL)
315 state_seed[i] = cprng_fast32();
317 state_seed[i] = ((u_long)state_seed + i) * state_size;
318 state_seed[i] ^= 0xa5a55a5a;
319 state_seed[i] *= (u_long)state_seed;
320 state_seed[i] ^= 0x5a5aa5a5;
321 state_seed[i] *= state_max;
324 return state_seed;