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

/freebsd-current/lib/libc/stdtime/
H A Dstrftime.c607 #define DIVISOR 100 macro
608 trail = a % DIVISOR + b % DIVISOR;
609 lead = a / DIVISOR + b / DIVISOR + trail / DIVISOR;
610 trail %= DIVISOR;
612 trail += DIVISOR;
615 trail -= DIVISOR;
/freebsd-current/contrib/tzcode/
H A Dstrftime.c641 int DIVISOR = 100; local
642 trail = a % DIVISOR + b % DIVISOR;
643 lead = a / DIVISOR + b / DIVISOR + trail / DIVISOR;
644 trail %= DIVISOR;
646 trail += DIVISOR;
649 trail -= DIVISOR;
H A Dzdump.c1239 int DIVISOR = 10; local
1255 trail = timeptr->tm_year % DIVISOR + TM_YEAR_BASE % DIVISOR;
1256 lead = timeptr->tm_year / DIVISOR + TM_YEAR_BASE / DIVISOR +
1257 trail / DIVISOR;
1258 trail %= DIVISOR;
1260 trail += DIVISOR;
1263 trail -= DIVISOR;

Completed in 69 milliseconds