Home
last modified time | relevance | path

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

/src/contrib/tzcode/
H A Dstrftime.c693 int DIVISOR = 100; in _yconv() local
694 trail = a % DIVISOR + b % DIVISOR; in _yconv()
695 lead = a / DIVISOR + b / DIVISOR + trail / DIVISOR; in _yconv()
696 trail %= DIVISOR; in _yconv()
698 trail += DIVISOR; in _yconv()
701 trail -= DIVISOR; in _yconv()
H A Dzdump.c1226 int DIVISOR = 10; in dumptime() local
1242 trail = timeptr->tm_year % DIVISOR + TM_YEAR_BASE % DIVISOR; in dumptime()
1243 lead = timeptr->tm_year / DIVISOR + TM_YEAR_BASE / DIVISOR + in dumptime()
1244 trail / DIVISOR; in dumptime()
1245 trail %= DIVISOR; in dumptime()
1247 trail += DIVISOR; in dumptime()
1250 trail -= DIVISOR; in dumptime()
/src/lib/libc/stdtime/
H A Dstrftime.c609 #define DIVISOR 100 in _yconv() macro
610 trail = a % DIVISOR + b % DIVISOR; in _yconv()
611 lead = a / DIVISOR + b / DIVISOR + trail / DIVISOR; in _yconv()
612 trail %= DIVISOR; in _yconv()
614 trail += DIVISOR; in _yconv()
617 trail -= DIVISOR; in _yconv()