Searched refs:trail (Results 1 - 1 of 1) sorted by last modified time

/system/core/libcutils/
H A Dtzstrftime.c696 register int trail; local
699 trail = a % DIVISOR + b % DIVISOR;
700 lead = a / DIVISOR + b / DIVISOR + trail / DIVISOR;
701 trail %= DIVISOR;
702 if (trail < 0 && lead > 0) {
703 trail += DIVISOR;
705 } else if (lead < 0 && trail > 0) {
706 trail -= DIVISOR;
710 if (lead == 0 && trail < 0)
717 pt = _conv(((trail <
[all...]

Completed in 3 milliseconds