Lines Matching defs:quot
105 u64 quot;
109 quot = div_u64_rem(dividend, divisor, &rem32);
113 quot = div_u64(dividend >> n, divisor >> n);
115 if (quot != 0)
116 quot--;
118 *remainder = dividend - quot * divisor;
120 quot++;
125 return quot;
145 u64 quot;
148 quot = div_u64(dividend, divisor);
151 quot = div_u64(dividend >> n, divisor >> n);
153 if (quot != 0)
154 quot--;
155 if ((dividend - quot * divisor) >= divisor)
156 quot++;
159 return quot;
172 s64 quot, t;
174 quot = div64_u64(abs(dividend), abs(divisor));
177 return (quot ^ t) - t;