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

/freebsd-10.0-release/lib/libc/stdtime/
H A Dstrftime.c629 #define DIVISOR 100 macro
630 trail = a % DIVISOR + b % DIVISOR;
631 lead = a / DIVISOR + b / DIVISOR + trail / DIVISOR;
632 trail %= DIVISOR;
634 trail += DIVISOR;
637 trail -= DIVISOR;
/freebsd-10.0-release/contrib/tzcode/zic/
H A Dzdump.c661 #define DIVISOR 10 macro
662 trail = timeptr->tm_year % DIVISOR + TM_YEAR_BASE % DIVISOR;
663 lead = timeptr->tm_year / DIVISOR + TM_YEAR_BASE / DIVISOR +
664 trail / DIVISOR;
665 trail %= DIVISOR;
667 trail += DIVISOR;
670 trail -= DIVISOR;
/freebsd-10.0-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 102 milliseconds