Searched refs:TIMES60 (Results 1 – 4 of 4) sorted by relevance
228 #ifndef TIMES60229 #define TIMES60(_X_) ((((_X_) << 4) - (_X_)) << 2) /* *(16 - 1) *4 */ macro856 t = TIMES60(t) + clock_time->minute; in dcf_to_unixtime()873 t = TIMES60(t) + clock_time->second; in dcf_to_unixtime()
522 clock_time->utcoffset += TIMES60(h); in cvt_mgps() 523 clock_time->utcoffset = TIMES60(clock_time->utcoffset); in cvt_mgps()
476 t = TIMES60(t) + clock_time->minute; in parse_to_unixtime() 485 t = TIMES60(t) + clock_time->second; in parse_to_unixtime()
105 #define TIMES60(val) ((((val)<<4) - (val))<<2) /* *(16 - 1) * 4 */ macro