Lines Matching defs:quot
101 u64 quot;
105 quot = div_u64_rem(dividend, divisor, &rem32);
109 quot = div_u64(dividend >> n, divisor >> n);
111 if (quot != 0)
112 quot--;
114 *remainder = dividend - quot * divisor;
116 quot++;
121 return quot;
141 u64 quot;
144 quot = div_u64(dividend, divisor);
147 quot = div_u64(dividend >> n, divisor >> n);
149 if (quot != 0)
150 quot--;
151 if ((dividend - quot * divisor) >= divisor)
152 quot++;
155 return quot;
163 s64 quot, t;
165 quot = div64_u64(abs(dividend), abs(divisor));
168 return (quot ^ t) - t;