HomeSort by: relevance | last modified time | path
    Searched defs:state_seed (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/external/bsd/ipf/netinet/
ip_state.c 305 u_long *state_seed; local in function:ipf_state_seed_alloc
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;
    [all...]
ip_state.c 305 u_long *state_seed; local in function:ipf_state_seed_alloc
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;
    [all...]

Completed in 24 milliseconds