/freebsd/sys/compat/freebsd32/ |
H A D | freebsd32_misc.c | 651 struct timespec32 ts32; in freebsd32_pselect() local 658 error = copyin(uap->ts, &ts32, sizeof(ts32)); in freebsd32_pselect() 661 CP(ts32, ts, tv_sec); in freebsd32_pselect() 662 CP(ts32, ts, tv_nsec); in freebsd32_pselect() 772 struct timespec32 ts32; in freebsd32_kevent() local 785 error = copyin(uap->timeout, &ts32, sizeof(ts32)); in freebsd32_kevent() 788 CP(ts32, ts, tv_sec); in freebsd32_kevent() 789 CP(ts32, t in freebsd32_kevent() 869 struct timespec32 ts32; freebsd11_freebsd32_kevent() local 1835 struct timespec32 ts32[2]; freebsd32_futimens() local 1856 struct timespec32 ts32[2]; freebsd32_utimensat() local 3075 struct timespec32 ts32; freebsd32_clock_getres() local 3257 struct timespec32 ts32; freebsd32_thr_suspend() local 3320 struct timespec32 ts32; freebsd32_sigtimedwait() local 3979 struct timespec32 ts32; freebsd32_ppoll() local 4009 struct timespec32 ts32; freebsd32_sched_rr_get_interval() local [all...] |
/freebsd/contrib/ntp/ntpd/ |
H A D | ntp_leapsec.c | 268 uint32_t ts32 , in leapsec_dump() 278 ts64 = ntpcal_ntp_to_ntp(ts32, pivot); in leapsec_dump() 318 ts32 = next.D_s.lo; in leapsec_query() 337 qr->ddist = due32 - ts32; in leapsec_query() 342 if (!betweenu32(due32 - SECSPERDAY, ts32, due32)) in leapsec_query() 346 if (!betweenu32(due32 - 10, ts32, due32)) in leapsec_query() 288 leapsec_query(leap_result_t * qr,uint32_t ts32,const time_t * pivot) leapsec_query() argument
|
/freebsd/crypto/openssl/engines/ |
H A D | e_afalg.c | 163 struct __timespec32 ts32; in io_getevents() local 165 ts32.tv_sec = (__kernel_long_t) timeout->tv_sec; in io_getevents() 166 ts32.tv_nsec = (__kernel_long_t) timeout->tv_nsec; in io_getevents() 168 return syscall(__NR_io_getevents, ctx, min, max, events, &ts32); in io_getevents()
|
/freebsd/sys/kern/ |
H A D | vfs_aio.c | 2897 struct timespec32 ts32; in freebsd32_aio_suspend() local 2908 if ((error = copyin(uap->timeout, &ts32, sizeof(ts32))) != 0) in freebsd32_aio_suspend() 2910 CP(ts32, ts, tv_sec); in freebsd32_aio_suspend() 2911 CP(ts32, ts, tv_nsec); in freebsd32_aio_suspend() 3003 struct timespec32 ts32; in freebsd32_aio_waitcomplete() local 3009 error = copyin(uap->timeout, &ts32, sizeof(ts32)); in freebsd32_aio_waitcomplete() 3012 CP(ts32, ts, tv_sec); in freebsd32_aio_waitcomplete() 3013 CP(ts32, ts, tv_nsec); in freebsd32_aio_waitcomplete()
|
H A D | kern_umtx.c | 4775 struct timespeci386 ts32; in umtx_copyin_timeouti386() local 4778 error = copyin(uaddr, &ts32, sizeof(ts32)); in umtx_copyin_timeouti386() 4780 if (!timespecvalid_interval(&ts32)) in umtx_copyin_timeouti386() 4783 CP(ts32, *tsp, tv_sec); in umtx_copyin_timeouti386() 4784 CP(ts32, *tsp, tv_nsec); in umtx_copyin_timeouti386() 4836 struct timespecx32 ts32; in umtx_copyin_timeoutx32() local 4839 error = copyin(uaddr, &ts32, sizeof(ts32)); in umtx_copyin_timeoutx32() 4841 if (!timespecvalid_interval(&ts32)) in umtx_copyin_timeoutx32() 4844 CP(ts32, *tsp, tv_sec); in umtx_copyin_timeoutx32() 4845 CP(ts32, *tsp, tv_nsec); in umtx_copyin_timeoutx32()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/ |
H A D | MachO.h | 1874 x86_thread_state32_t ts32; member 1992 arm_thread_state32_t ts32; member 2014 swapStruct(x.uts.ts32); in swapStruct() 2117 ppc_thread_state32_t ts32; member 2139 swapStruct(x.uts.ts32); in swapStruct()
|
/freebsd/sys/compat/linux/ |
H A D | linux_socket.c | 1669 struct l_timespec ts32; in recvmsg_scm_timestampns() local 1675 len = sizeof(ts32); in recvmsg_scm_timestampns() 1682 ts32.tv_sec = ts.tv_sec; in recvmsg_scm_timestampns() 1683 ts32.tv_nsec = ts.tv_nsec; in recvmsg_scm_timestampns() 1684 memmove(buf, &ts32, len); in recvmsg_scm_timestampns()
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/ |
H A D | MachODump.cpp | 9710 Print_x86_thread_state32_t(ts.uts.ts32); in PrintThreadCommand()
|