Lines Matching refs:state
34 unsigned int state[64];
41 * Seed the state of the ALFG using binary data.
50 * Please also consider a simple LCG like state= state*1664525+1013904223,
54 unsigned a = c->state[c->index & 63] = c->state[(c->index-24) & 63] + c->state[(c->index-55) & 63];
65 unsigned int a= c->state[(c->index-55) & 63];
66 unsigned int b= c->state[(c->index-24) & 63];
67 a = c->state[c->index & 63] = 2*a*b+a+b;