Home
last modified time | relevance | path

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

/glibc-2.36/sysdeps/unix/sysv/linux/alpha/
Dosf_adjtime.c75 struct timex tx64; in __adjtimex_tv32() local
76 memset (&tx64, 0, sizeof tx64); in __adjtimex_tv32()
77 tx64.modes = tx->modes; in __adjtimex_tv32()
78 tx64.offset = tx->offset; in __adjtimex_tv32()
79 tx64.freq = tx->freq; in __adjtimex_tv32()
80 tx64.maxerror = tx->maxerror; in __adjtimex_tv32()
81 tx64.esterror = tx->esterror; in __adjtimex_tv32()
82 tx64.status = tx->status; in __adjtimex_tv32()
83 tx64.constant = tx->constant; in __adjtimex_tv32()
84 tx64.precision = tx->precision; in __adjtimex_tv32()
[all …]
/glibc-2.36/sysdeps/unix/sysv/linux/include/sys/
Dtimex.h80 extern int __clock_adjtime64 (const clockid_t clock_id, struct __timex64 *tx64) __nonnull((2));
82 extern int ___adjtimex64 (struct __timex64 *tx64) __nonnull ((1));
108 struct __timex64 tx64; local
110 tx64.modes = tx.modes;
111 tx64.offset = tx.offset;
112 tx64.freq = tx.freq;
113 tx64.maxerror = tx.maxerror;
114 tx64.esterror = tx.esterror;
115 tx64.status = tx.status;
116 tx64.constant = tx.constant;
[all …]
/glibc-2.36/sysdeps/unix/sysv/linux/
Dclock_adjtime.c27 __clock_adjtime64 (const clockid_t clock_id, struct __timex64 *tx64) in __clock_adjtime64() argument
32 int r = INLINE_SYSCALL_CALL (clock_adjtime64, clock_id, tx64); in __clock_adjtime64()
37 if (tx64->modes & ADJ_SETOFFSET in __clock_adjtime64()
38 && ! in_time_t_range (tx64->time.tv_sec)) in __clock_adjtime64()
44 struct timex tx32 = valid_timex64_to_timex (*tx64); in __clock_adjtime64()
47 *tx64 = valid_timex_to_timex64 (tx32); in __clock_adjtime64()
58 struct __timex64 tx64; in libc_hidden_def() local
61 tx64 = valid_timex_to_timex64 (*tx); in libc_hidden_def()
62 retval = __clock_adjtime64 (clock_id, &tx64); in libc_hidden_def()
64 *tx = valid_timex64_to_timex (tx64); in libc_hidden_def()
Dadjtimex.c23 ___adjtimex64 (struct __timex64 *tx64) in ___adjtimex64() argument
25 return __clock_adjtime64 (CLOCK_REALTIME, tx64); in ___adjtimex64()
34 struct __timex64 tx64; in libc_hidden_def() local
37 tx64 = valid_timex_to_timex64 (*tx); in libc_hidden_def()
38 retval = ___adjtimex64 (&tx64); in libc_hidden_def()
39 *tx = valid_timex64_to_timex (tx64); in libc_hidden_def()