Searched refs:DIVISOR (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/lib/libc/port/locale/
H A Dstrftime.c521 #define DIVISOR 100 macro
522 trail = a % DIVISOR + b % DIVISOR;
523 lead = a / DIVISOR + b / DIVISOR + trail / DIVISOR;
524 trail %= DIVISOR;
526 trail += DIVISOR;
529 trail -= DIVISOR;
/illumos-gate/usr/src/cmd/zdump/
H A Dzdump.c615 #define DIVISOR 10 macro
616 trail = timeptr->tm_year % DIVISOR + TM_YEAR_BASE % DIVISOR;
617 lead = timeptr->tm_year / DIVISOR + TM_YEAR_BASE / DIVISOR +
618 trail / DIVISOR;
619 trail %= DIVISOR;
621 trail += DIVISOR;
624 trail -= DIVISOR;

Completed in 55 milliseconds