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

/freebsd-10.1-release/lib/libc/stdtime/
H A Dstrftime.c640 #define DIVISOR 100 macro
641 trail = a % DIVISOR + b % DIVISOR;
642 lead = a / DIVISOR + b / DIVISOR + trail / DIVISOR;
643 trail %= DIVISOR;
645 trail += DIVISOR;
648 trail -= DIVISOR;
/freebsd-10.1-release/contrib/tzcode/zic/
H A Dzdump.c653 #define DIVISOR 10 macro
654 trail = timeptr->tm_year % DIVISOR + TM_YEAR_BASE % DIVISOR;
655 lead = timeptr->tm_year / DIVISOR + TM_YEAR_BASE / DIVISOR +
656 trail / DIVISOR;
657 trail %= DIVISOR;
659 trail += DIVISOR;
662 trail -= DIVISOR;
/freebsd-10.1-release/sys/dev/rp/
H A Drpreg.h832 #define sSetBaud(ChP,DIVISOR) \
834 (ChP)->BaudDiv[2] = (Byte_t)(DIVISOR); \
835 (ChP)->BaudDiv[3] = (Byte_t)((DIVISOR) >> 8); \

Completed in 140 milliseconds