Searched refs:DIVISOR (Results 1 – 3 of 3) sorted by relevance
693 int DIVISOR = 100; in _yconv() local694 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()
1226 int DIVISOR = 10; in dumptime() local1242 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()
609 #define DIVISOR 100 in _yconv() macro610 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()