Home
last modified time | relevance | path

Searched refs:tloc (Results 1 – 9 of 9) sorted by relevance

/freebsd/stand/uboot/
H A Dtime.c35 time(time_t *tloc) in time() argument
40 if (tloc) in time()
41 *tloc = secs; in time()
/freebsd/stand/efi/libefi/
H A Dtime_arm64.c54 time(time_t *tloc) in time() argument
59 if (tloc != NULL) in time()
60 *tloc = t; in time()
H A Dtime_event.c64 time(time_t *tloc) in time() argument
69 if (tloc != NULL) in time()
70 *tloc = t; in time()
H A Dtime.c263 time(time_t *tloc) in time() argument
270 if (tloc) in time()
271 *tloc = tv.tv_sec; in time()
/freebsd/stand/libofw/
H A Dofw_time.c31 time(time_t *tloc) in time() argument
36 if (tloc) in time()
37 *tloc = secs; in time()
/freebsd/contrib/ntp/ntpd/
H A Drefclock_bancomm.c415 time_t tloc; in vme_poll() local
436 time(&tloc); in vme_poll()
437 tadr = gmtime(&tloc); in vme_poll()
/freebsd/stand/kboot/kboot/
H A Dmain.c438 time(time_t *tloc) in time() argument
443 if (tloc != NULL) in time()
444 *tloc = rv; in time()
/freebsd/contrib/llvm-project/compiler-rt/include/sanitizer/
H A Dlinux_syscall_hooks.h23 #define __sanitizer_syscall_pre_time(tloc) \ argument
24 __sanitizer_syscall_pre_impl_time((long)(tloc))
25 #define __sanitizer_syscall_post_time(res, tloc) \ argument
26 __sanitizer_syscall_post_impl_time(res, (long)(tloc))
2024 void __sanitizer_syscall_pre_impl_time(long tloc);
2025 void __sanitizer_syscall_post_impl_time(long res, long tloc);
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_syscalls.inc206 PRE_SYSCALL(time)(void *tloc) {}
208 POST_SYSCALL(time)(long res, void *tloc) {
210 if (tloc)
211 POST_WRITE(tloc, sizeof(long));