Home | History | Annotate | Download | only in libcutils

Lines Matching refs:trail

695 	register int	trail;
698 trail = a % DIVISOR + b % DIVISOR;
699 lead = a / DIVISOR + b / DIVISOR + trail / DIVISOR;
700 trail %= DIVISOR;
701 if (trail < 0 && lead > 0) {
702 trail += DIVISOR;
704 } else if (lead < 0 && trail > 0) {
705 trail -= DIVISOR;
709 if (lead == 0 && trail < 0)
716 pt = _conv(((trail < 0) ? -trail : trail),