Home
last modified time | relevance | path

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

/freebsd/contrib/tzcode/
H A Dstrftime.c690 int DIVISOR = 100; in _yconv() local
691 trail = a % DIVISOR + b % DIVISOR; in _yconv()
692 lead = a / DIVISOR + b / DIVISOR + trail / DIVISOR; in _yconv()
693 trail %= DIVISOR; in _yconv()
695 trail += DIVISOR; in _yconv()
698 trail -= DIVISOR; in _yconv()
H A Dzdump.c1180 int DIVISOR = 10; in dumptime() local
1196 trail = timeptr->tm_year % DIVISOR + TM_YEAR_BASE % DIVISOR; in dumptime()
1197 lead = timeptr->tm_year / DIVISOR + TM_YEAR_BASE / DIVISOR + in dumptime()
1198 trail / DIVISOR; in dumptime()
1199 trail %= DIVISOR; in dumptime()
1201 trail += DIVISOR; in dumptime()
1204 trail -= DIVISOR; in dumptime()
/freebsd/lib/libc/stdtime/
H A Dstrftime.c605 #define DIVISOR 100 in _yconv() macro
606 trail = a % DIVISOR + b % DIVISOR; in _yconv()
607 lead = a / DIVISOR + b / DIVISOR + trail / DIVISOR; in _yconv()
608 trail %= DIVISOR; in _yconv()
610 trail += DIVISOR; in _yconv()
613 trail -= DIVISOR; in _yconv()