Lines Matching refs:quotient
48 humanize_number(char *buf, size_t len, int64_t quotient, in humanize_number() argument
113 if (quotient < 0) { in humanize_number()
115 quotient = -quotient; in humanize_number()
144 (quotient >= max || (quotient == max - 1 && in humanize_number()
147 remainder = quotient % divisor; in humanize_number()
148 quotient /= divisor; in humanize_number()
155 remainder = quotient % divisor; in humanize_number()
156 quotient /= divisor; in humanize_number()
165 if (((quotient == 9 && remainder < divisordeccut) || quotient < 9) && in humanize_number()
167 s1 = (int)quotient + ((remainder * 10 + divisor / 2) / in humanize_number()
175 sign * (quotient + (remainder + divisor / 2) / divisor), in humanize_number()