Searched refs:atv32 (Results 1 – 2 of 2) sorted by relevance
| /NextBSD/sys/amd64/linux32/ |
| HD | linux32_machdep.c | 843 l_timeval atv32; in linux_gettimeofday() local 849 atv32.tv_sec = atv.tv_sec; in linux_gettimeofday() 850 atv32.tv_usec = atv.tv_usec; in linux_gettimeofday() 851 error = copyout(&atv32, uap->tp, sizeof(atv32)); in linux_gettimeofday() 864 l_timeval atv32; in linux_settimeofday() local 870 error = copyin(uap->tp, &atv32, sizeof(atv32)); in linux_settimeofday() 873 atv.tv_sec = atv32.tv_sec; in linux_settimeofday() 874 atv.tv_usec = atv32.tv_usec; in linux_settimeofday()
|
| /NextBSD/sys/compat/freebsd32/ |
| HD | freebsd32_misc.c | 683 struct timeval32 atv32; in freebsd32_gettimeofday() local 689 CP(atv, atv32, tv_sec); in freebsd32_gettimeofday() 690 CP(atv, atv32, tv_usec); in freebsd32_gettimeofday() 691 error = copyout(&atv32, uap->tp, sizeof (atv32)); in freebsd32_gettimeofday()
|