Lines Matching +full:1000 +full:ns
150 u64 ns; in do_realtime() local
155 ns = vvar->wall_time_snsec; in do_realtime()
156 ns += vgetsns(vvar); in do_realtime()
157 ns >>= vvar->clock.shift; in do_realtime()
160 ts->tv_sec += __iter_div_u64_rem(ns, NSEC_PER_SEC, &ns); in do_realtime()
161 ts->tv_nsec = ns; in do_realtime()
170 u64 ns; in do_realtime_stick() local
175 ns = vvar->wall_time_snsec; in do_realtime_stick()
176 ns += vgetsns_stick(vvar); in do_realtime_stick()
177 ns >>= vvar->clock.shift; in do_realtime_stick()
180 ts->tv_sec += __iter_div_u64_rem(ns, NSEC_PER_SEC, &ns); in do_realtime_stick()
181 ts->tv_nsec = ns; in do_realtime_stick()
190 u64 ns; in do_monotonic() local
195 ns = vvar->monotonic_time_snsec; in do_monotonic()
196 ns += vgetsns(vvar); in do_monotonic()
197 ns >>= vvar->clock.shift; in do_monotonic()
200 ts->tv_sec += __iter_div_u64_rem(ns, NSEC_PER_SEC, &ns); in do_monotonic()
201 ts->tv_nsec = ns; in do_monotonic()
210 u64 ns; in do_monotonic_stick() local
215 ns = vvar->monotonic_time_snsec; in do_monotonic_stick()
216 ns += vgetsns_stick(vvar); in do_monotonic_stick()
217 ns >>= vvar->clock.shift; in do_monotonic_stick()
220 ts->tv_sec += __iter_div_u64_rem(ns, NSEC_PER_SEC, &ns); in do_monotonic_stick()
221 ts->tv_nsec = ns; in do_monotonic_stick()
327 tstv->tv.tv_usec /= 1000; in __vdso_gettimeofday()
363 tstv->tv.tv_usec /= 1000; in __vdso_gettimeofday_stick()