Lines Matching refs:quotient
51 humanize_number(char *buf, size_t len, int64_t quotient, in humanize_number() argument
116 if (quotient < 0) { in humanize_number()
118 quotient = -quotient; in humanize_number()
147 (quotient >= max || (quotient == max - 1 && in humanize_number()
150 remainder = quotient % divisor; in humanize_number()
151 quotient /= divisor; in humanize_number()
158 remainder = quotient % divisor; in humanize_number()
159 quotient /= divisor; in humanize_number()
168 if (((quotient == 9 && remainder < divisordeccut) || quotient < 9) && in humanize_number()
170 s1 = (int)quotient + ((remainder * 10 + divisor / 2) / in humanize_number()
178 sign * (quotient + (remainder + divisor / 2) / divisor), in humanize_number()