Lines Matching refs:tv
77 notrace static long vdso_fallback_gettimeofday(struct __kernel_old_timeval *tv, struct timezone *tz)
80 register long o0 __asm__("o0") = (long) tv;
307 __vdso_gettimeofday(struct __kernel_old_timeval *tv, struct timezone *tz)
312 if (likely(tv != NULL)) {
315 struct __kernel_old_timeval tv;
316 } *tstv = (union tstv_t *) tv;
326 tstv->tv.tv_usec = tstv->ts.tv_nsec;
327 tstv->tv.tv_usec /= 1000;
336 return vdso_fallback_gettimeofday(tv, tz);
343 __vdso_gettimeofday_stick(struct __kernel_old_timeval *tv, struct timezone *tz)
348 if (likely(tv != NULL)) {
351 struct __kernel_old_timeval tv;
352 } *tstv = (union tstv_t *) tv;
362 tstv->tv.tv_usec = tstv->ts.tv_nsec;
363 tstv->tv.tv_usec /= 1000;
372 return vdso_fallback_gettimeofday(tv, tz);