Lines Matching refs:divisor3
1131 int divisor3 = DIV_ROUND_CLOSEST(base, 2 * baud);
1132 if ((divisor3 & 0x7) == 7)
1133 divisor3++; /* round x.7/8 up to x+1 */
1134 divisor = divisor3 >> 3;
1135 divisor3 &= 0x7;
1136 if (divisor3 == 1)
1138 else if (divisor3 >= 4)
1140 else if (divisor3 != 0)
1157 int divisor3 = DIV_ROUND_CLOSEST(base, 2 * baud);
1158 divisor = divisor3 >> 3;
1159 divisor |= (u32)divfrac[divisor3 & 0x7] << 14;
1177 int divisor3;
1180 divisor3 = DIV_ROUND_CLOSEST(8 * base, 10 * baud);
1182 divisor = divisor3 >> 3;
1183 divisor |= (u32)divfrac[divisor3 & 0x7] << 14;