Home
last modified time | relevance | path

Searched refs:TIMES60 (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/ntp/parseutil/
H A Ddcfd.c228 #ifndef TIMES60
229 #define TIMES60(_X_) ((((_X_) << 4) - (_X_)) << 2) /* *(16 - 1) *4 */ macro
856 t = TIMES60(t) + clock_time->minute; in dcf_to_unixtime()
873 t = TIMES60(t) + clock_time->second; in dcf_to_unixtime()
/freebsd/contrib/ntp/libparse/
H A Dclk_meinberg.c522 clock_time->utcoffset += TIMES60(h); in cvt_mgps()
523 clock_time->utcoffset = TIMES60(clock_time->utcoffset); in cvt_mgps()
H A Dparse.c476 t = TIMES60(t) + clock_time->minute; in parse_to_unixtime()
485 t = TIMES60(t) + clock_time->second; in parse_to_unixtime()
/freebsd/contrib/ntp/include/
H A Dntp_calendar.h105 #define TIMES60(val) ((((val)<<4) - (val))<<2) /* *(16 - 1) * 4 */ macro