Lines Matching refs:coarse
59 /* The minimal attainable coarse divisor (first value in table) */
109 * a coarse divisor translation table.
127 unsigned int coarse = div / 4;
129 return coarse < COARSE_DIV_OFFSET ||
130 coarse >= COARSE_DIV_OFFSET + LFSR_TBLSIZE;
135 unsigned int coarse = div / 4;
140 return FIELD_PREP(DIV_COARSE, tbl->fwd[coarse - COARSE_DIV_OFFSET]) |
146 unsigned int coarse, fine;
148 coarse = tbl->inv[FIELD_GET(DIV_COARSE, regval)] + COARSE_DIV_OFFSET;
151 return coarse * 4 + fine;