Home
last modified time | relevance | path

Searched refs:ts32 (Results 1 – 8 of 8) sorted by relevance

/freebsd-14-stable/sys/compat/freebsd32/
HDfreebsd32_misc.c650 struct timespec32 ts32; in freebsd32_pselect() local
657 error = copyin(uap->ts, &ts32, sizeof(ts32)); in freebsd32_pselect()
660 CP(ts32, ts, tv_sec); in freebsd32_pselect()
661 CP(ts32, ts, tv_nsec); in freebsd32_pselect()
828 struct timespec32 ts32; in freebsd32_kevent() local
841 error = copyin(uap->timeout, &ts32, sizeof(ts32)); in freebsd32_kevent()
844 CP(ts32, ts, tv_sec); in freebsd32_kevent()
845 CP(ts32, ts, tv_nsec); in freebsd32_kevent()
925 struct timespec32 ts32; in freebsd11_freebsd32_kevent() local
938 error = copyin(uap->timeout, &ts32, sizeof(ts32)); in freebsd11_freebsd32_kevent()
[all …]
/freebsd-14-stable/contrib/ntp/ntpd/
HDntp_leapsec.c268 uint32_t ts32 , in leapsec_query() argument
278 ts64 = ntpcal_ntp_to_ntp(ts32, pivot); in leapsec_query()
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()
/freebsd-14-stable/crypto/openssl/engines/
HDe_afalg.c163 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-14-stable/sys/kern/
HDvfs_aio.c2938 struct timespec32 ts32; in freebsd32_aio_suspend() local
2949 if ((error = copyin(uap->timeout, &ts32, sizeof(ts32))) != 0) in freebsd32_aio_suspend()
2951 CP(ts32, ts, tv_sec); in freebsd32_aio_suspend()
2952 CP(ts32, ts, tv_nsec); in freebsd32_aio_suspend()
3044 struct timespec32 ts32; in freebsd32_aio_waitcomplete() local
3050 error = copyin(uap->timeout, &ts32, sizeof(ts32)); in freebsd32_aio_waitcomplete()
3053 CP(ts32, ts, tv_sec); in freebsd32_aio_waitcomplete()
3054 CP(ts32, ts, tv_nsec); in freebsd32_aio_waitcomplete()
HDkern_umtx.c4774 struct timespeci386 ts32; in umtx_copyin_timeouti386() local
4777 error = copyin(uaddr, &ts32, sizeof(ts32)); in umtx_copyin_timeouti386()
4779 if (!timespecvalid_interval(&ts32)) in umtx_copyin_timeouti386()
4782 CP(ts32, *tsp, tv_sec); in umtx_copyin_timeouti386()
4783 CP(ts32, *tsp, tv_nsec); in umtx_copyin_timeouti386()
4835 struct timespecx32 ts32; in umtx_copyin_timeoutx32() local
4838 error = copyin(uaddr, &ts32, sizeof(ts32)); in umtx_copyin_timeoutx32()
4840 if (!timespecvalid_interval(&ts32)) in umtx_copyin_timeoutx32()
4843 CP(ts32, *tsp, tv_sec); in umtx_copyin_timeoutx32()
4844 CP(ts32, *tsp, tv_nsec); in umtx_copyin_timeoutx32()
/freebsd-14-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
HDMachO.h1874 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-14-stable/sys/compat/linux/
HDlinux_socket.c1667 struct l_timespec ts32; in recvmsg_scm_timestampns() local
1673 len = sizeof(ts32); in recvmsg_scm_timestampns()
1680 ts32.tv_sec = ts.tv_sec; in recvmsg_scm_timestampns()
1681 ts32.tv_nsec = ts.tv_nsec; in recvmsg_scm_timestampns()
1682 memmove(buf, &ts32, len); in recvmsg_scm_timestampns()
/freebsd-14-stable/contrib/llvm-project/llvm/tools/llvm-objdump/
HDMachODump.cpp9710 Print_x86_thread_state32_t(ts.uts.ts32); in PrintThreadCommand()