Lines Matching refs:divisor3
1163 int divisor3 = DIV_ROUND_CLOSEST(base, 2 * baud);
1164 if ((divisor3 & 0x7) == 7)
1165 divisor3++; /* round x.7/8 up to x+1 */
1166 divisor = divisor3 >> 3;
1167 divisor3 &= 0x7;
1168 if (divisor3 == 1)
1170 else if (divisor3 >= 4)
1172 else if (divisor3 != 0)
1189 int divisor3 = DIV_ROUND_CLOSEST(base, 2 * baud);
1190 divisor = divisor3 >> 3;
1191 divisor |= (u32)divfrac[divisor3 & 0x7] << 14;
1209 int divisor3;
1212 divisor3 = DIV_ROUND_CLOSEST(8 * base, 10 * baud);
1214 divisor = divisor3 >> 3;
1215 divisor |= (u32)divfrac[divisor3 & 0x7] << 14;