Lines Matching refs:state
37 * base divisor is adjusted on a cycle-by-cycle basis based on the state of a
49 * are programmed into REG_DIV by picking an appropriate LFSR state. See
105 u32 state = LFSR_INIT;
112 if (state & 1)
113 state = (state >> 1) ^ (LFSR_POLY >> 1);
115 state = (state >> 1);
116 tbl->fwd[i] = state;
117 tbl->inv[state] = i;