Lines Matching refs:state
20 isc_uint32_t state[1024 * 64];
36 isc_lfsr_generate(&lfsr1, &state[i], 4);
37 printf("lfsr1: state[%2d] = %08x\n", i, state[i]);
42 if (state[i] != temp)
43 printf("lfsr1: state[%2d] = %08x, "
44 "but new state is %08x\n",
45 i, state[i], temp);
53 isc_lfsr_generate(&lfsr1, &state[i], 4);
55 printf("lfsr1: state[%2d] = %08x\n", i, state[i]);
61 if (state[i] != temp)
62 printf("lfsr1: state[%2d] = %08x, "
63 "but new state is %08x\n",
64 i, state[i], temp);
74 isc_lfsr_generate(&lfsr2, &state[i], 4);
75 printf("lfsr2: state[%2d] = %08x\n", i, state[i]);
80 if (state[i] != temp)
81 printf("lfsr2: state[%2d] = %08x, "
82 "but new state is %08x\n",
83 i, state[i], temp);