Lines Matching refs:tz
32 __gettimeofday_syscall (struct timeval *restrict tv, void *restrict tz) in __gettimeofday_syscall() argument
34 if (__glibc_unlikely (tz != 0)) in __gettimeofday_syscall()
35 memset (tz, 0, sizeof *tz); in __gettimeofday_syscall()
36 return INLINE_SYSCALL_CALL (gettimeofday, tv, tz); in __gettimeofday_syscall()
48 __gettimeofday (struct timeval *restrict tv, void *restrict tz)
50 if (__glibc_unlikely (tz != 0))
51 memset (tz, 0, sizeof *tz);
53 return INLINE_VSYSCALL (gettimeofday, 2, tv, tz);
63 __gettimeofday64 (struct __timeval64 *restrict tv, void *restrict tz)
65 if (__glibc_unlikely (tz != 0))
66 memset (tz, 0, sizeof (struct timezone));
80 __gettimeofday (struct timeval *restrict tv, void *restrict tz)
83 if (__gettimeofday64 (&tv64, tz))