Lines Matching refs:time_adjust
70 long time_adjust; member
334 ntpdata->time_adjust = 0; in __ntp_clear()
462 if (!ntpdata->time_adjust) in second_overflow()
465 if (ntpdata->time_adjust > MAX_TICKADJ) { in second_overflow()
466 ntpdata->time_adjust -= MAX_TICKADJ; in second_overflow()
471 if (ntpdata->time_adjust < -MAX_TICKADJ) { in second_overflow()
472 ntpdata->time_adjust += MAX_TICKADJ; in second_overflow()
477 ntpdata->tick_length += (s64)(ntpdata->time_adjust * NSEC_PER_USEC / NTP_INTERVAL_FREQ) in second_overflow()
479 ntpdata->time_adjust = 0; in second_overflow()
769 long save_adjust = ntpdata->time_adjust; in __do_adjtimex()
773 ntpdata->time_adjust = txc->offset; in __do_adjtimex()
777 audit_ntp_set_new(ad, AUDIT_NTP_ADJUST, ntpdata->time_adjust); in __do_adjtimex()
1014 ntpdata->time_adjust = 0; in hardpps_update_phase()