Home
last modified time | relevance | path

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

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