Home | History | Annotate | Download | only in rng

Lines Matching full:state

71   /* initialize prng state from random source */
72 status = x917_prng.rand((uint8_t *)&x917_prng.state, 16);
104 /* exor time into state */
105 x917_prng.state.v32[0] ^= t;
107 /* copy state into buffer */
108 v128_copy(&buffer, &x917_prng.state);
137 /* copy buffer into state */
138 v128_copy(&x917_prng.state, &buffer);
146 /* exor time into state */
147 x917_prng.state.v32[0] ^= t;
150 v128_copy(&buffer, &x917_prng.state);
160 /* now update the state one more time */
168 /* copy buffer into state */
169 v128_copy(&x917_prng.state, &buffer);