Lines Matching refs:ats32
3101 struct timespec32 ats32; in freebsd32_clock_gettime() local
3106 CP(ats, ats32, tv_sec); in freebsd32_clock_gettime()
3107 CP(ats, ats32, tv_nsec); in freebsd32_clock_gettime()
3108 error = copyout(&ats32, uap->tp, sizeof(ats32)); in freebsd32_clock_gettime()
3118 struct timespec32 ats32; in freebsd32_clock_settime() local
3121 error = copyin(uap->tp, &ats32, sizeof(ats32)); in freebsd32_clock_settime()
3124 CP(ats32, ats, tv_sec); in freebsd32_clock_settime()
3125 CP(ats32, ats, tv_nsec); in freebsd32_clock_settime()