Home
last modified time | relevance | path

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

/glibc-2.36/sysdeps/unix/sysv/linux/
Dadjtime.c30 struct __timex64 tntx; in __adjtime64() local
41 tntx.offset = tmp.tv_usec + tmp.tv_sec * 1000000L; in __adjtime64()
42 tntx.modes = ADJ_OFFSET_SINGLESHOT; in __adjtime64()
45 tntx.modes = ADJ_OFFSET_SS_READ; in __adjtime64()
47 if (__glibc_unlikely (__clock_adjtime64 (CLOCK_REALTIME, &tntx) < 0)) in __adjtime64()
52 if (tntx.offset < 0) in __adjtime64()
54 otv->tv_usec = -(-tntx.offset % 1000000); in __adjtime64()
55 otv->tv_sec = -(-tntx.offset / 1000000); in __adjtime64()
59 otv->tv_usec = tntx.offset % 1000000; in __adjtime64()
60 otv->tv_sec = tntx.offset / 1000000; in __adjtime64()
Dntp_gettime.c35 struct __timex64 tntx; in __ntp_gettime64() local
38 tntx.modes = 0; in __ntp_gettime64()
39 result = __clock_adjtime64 (CLOCK_REALTIME, &tntx); in __ntp_gettime64()
40 ntv->time = tntx.time; in __ntp_gettime64()
41 ntv->maxerror = tntx.maxerror; in __ntp_gettime64()
42 ntv->esterror = tntx.esterror; in __ntp_gettime64()
43 ntv->tai = tntx.tai; in __ntp_gettime64()
Dntp_gettimex.c31 struct __timex64 tntx; in __ntp_gettimex64() local
34 tntx.modes = 0; in __ntp_gettimex64()
35 result = __clock_adjtime64 (CLOCK_REALTIME, &tntx); in __ntp_gettimex64()
36 ntv->time = tntx.time; in __ntp_gettimex64()
37 ntv->maxerror = tntx.maxerror; in __ntp_gettimex64()
38 ntv->esterror = tntx.esterror; in __ntp_gettimex64()
39 ntv->tai = tntx.tai; in __ntp_gettimex64()