Lines Matching refs:time_adjust
71 long time_adjust; member
337 ntpdata->time_adjust = 0; in __ntp_clear()
470 if (!ntpdata->time_adjust) in second_overflow()
473 if (ntpdata->time_adjust > MAX_TICKADJ) { in second_overflow()
474 ntpdata->time_adjust -= MAX_TICKADJ; in second_overflow()
479 if (ntpdata->time_adjust < -MAX_TICKADJ) { in second_overflow()
480 ntpdata->time_adjust += MAX_TICKADJ; in second_overflow()
485 ntpdata->tick_length += (s64)(ntpdata->time_adjust * NSEC_PER_USEC / NTP_INTERVAL_FREQ) in second_overflow()
487 ntpdata->time_adjust = 0; in second_overflow()
777 long save_adjust = ntpdata->time_adjust; in ntp_adjtimex()
781 ntpdata->time_adjust = txc->offset; in ntp_adjtimex()
785 audit_ntp_set_new(ad, AUDIT_NTP_ADJUST, ntpdata->time_adjust); in ntp_adjtimex()
1022 ntpdata->time_adjust = 0; in hardpps_update_phase()