Home
last modified time | relevance | path

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

/xnu-8019.80.24/bsd/kern/
H A Dkern_ntptime.c107 #define L_GINT(v) ((v) < 0 ? -(-(v) >> 32) : (v) >> 32) macro
455 user_ntv.offset = L_GINT(time_offset); in ntp_adjtime()
457 user_ntv.offset = L_GINT(time_offset) / 1000; in ntp_adjtime()
460 user_ntv.freq = L_GINT(((int64_t)(time_freq / 1000LL)) << 16); in ntp_adjtime()
462 user_ntv.freq = -L_GINT(((int64_t)(-(time_freq) / 1000LL)) << 16); in ntp_adjtime()
484 user_ntv.offset = L_GINT(time_offset); in ntp_adjtime()
486 user_ntv.offset = L_GINT(time_offset) / 1000; in ntp_adjtime()
489 user_ntv.freq = L_GINT((time_freq / 1000LL) << 16); in ntp_adjtime()
491 user_ntv.freq = -L_GINT((-(time_freq) / 1000LL) << 16); in ntp_adjtime()
660 if (L_GINT(time_freq) > MAXFREQ) {
[all …]