HomeSort by: relevance | last modified time | path
    Searched defs:ats (Results 1 - 15 of 15) sorted by relevancy

  /src/sys/compat/netbsd32/
netbsd32_select.c 65 struct timespec ats, *ts = NULL; local in function:netbsd32___select50
75 ats.tv_sec = tv32.tv_sec;
76 ats.tv_nsec = tv32.tv_usec * 1000;
77 ts = &ats;
98 struct timespec ats, *ts = NULL; local in function:netbsd32___pselect50
105 netbsd32_to_timespec(&ts32, &ats);
106 ts = &ats;
131 struct timespec ats, *ts = NULL; local in function:netbsd32___pollts50
138 netbsd32_to_timespec(&ts32, &ats);
139 ts = &ats;
    [all...]
netbsd32_time.c 225 struct timespec ats; local in function:netbsd32___settimeofday50
250 TIMEVAL_TO_TIMESPEC(&atv, &ats);
251 return settime(p, &ats);
305 struct timespec ats; local in function:netbsd32___clock_gettime50
308 error = clock_gettime1(SCARG(uap, clock_id), &ats);
312 netbsd32_from_timespec(&ats, &ts32);
324 struct timespec ats; local in function:netbsd32___clock_settime50
330 netbsd32_to_timespec(&ts32, &ats);
331 return clock_settime1(l->l_proc, SCARG(uap, clock_id), &ats, true);
netbsd32_compat_50.c 132 struct timespec ats, *ts = NULL; local in function:compat_50_netbsd32_select
142 ats.tv_sec = tv32.tv_sec;
143 ats.tv_nsec = tv32.tv_usec * 1000;
144 ts = &ats;
194 struct timespec ats; local in function:compat_50_netbsd32_settimeofday
219 TIMEVAL_TO_TIMESPEC(&atv, &ats);
220 return settime(p, &ats);
326 struct timespec ats; local in function:compat_50_netbsd32_clock_gettime
329 error = clock_gettime1(SCARG(uap, clock_id), &ats);
333 netbsd32_from_timespec50(&ats, &ts32)
346 struct timespec ats; local in function:compat_50_netbsd32_clock_settime
634 struct timespec ats, *ts = NULL; local in function:compat_50_netbsd32_pselect
667 struct timespec ats, *ts = NULL; local in function:compat_50_netbsd32_pollts
    [all...]
  /src/sys/compat/common/
kern_select_50.c 111 struct timespec ats, *ts = NULL; local in function:compat_50_sys_select
123 ats.tv_sec = atv50.tv_sec;
124 ats.tv_nsec = atv50.tv_usec * 1000;
125 ts = &ats;
145 struct timespec ats, *ts = NULL; local in function:compat_50_sys_pselect
153 timespec50_to_timespec(&ats50, &ats);
154 ts = &ats;
177 struct timespec ats, *ts = NULL; local in function:compat_50_sys_pollts
186 timespec50_to_timespec(&ats50, &ats);
187 ts = &ats;
    [all...]
kern_time_50.c 116 struct timespec ats; local in function:compat_50_sys_clock_gettime
119 error = clock_gettime1(SCARG(uap, clock_id), &ats);
123 timespec_to_timespec50(&ats, &ats50);
138 struct timespec ats; local in function:compat_50_sys_clock_settime
144 timespec50_to_timespec(&ats50, &ats);
146 return clock_settime1(l->l_proc, SCARG(uap, clock_id), &ats,
160 struct timespec ats; local in function:compat_50_sys_clock_getres
163 error = clock_getres1(SCARG(uap, clock_id), &ats);
168 timespec_to_timespec50(&ats, &ats50);
  /src/sys/compat/linux/common/
linux_misc_notalpha.c 323 struct timespec ats; local in function:linux_sys_stime
330 ats.tv_sec = tt;
331 ats.tv_nsec = 0;
333 if ((error = settime(l->l_proc, &ats)))
  /src/sys/external/bsd/drm2/dist/drm/radeon/
cypress_dpm.h 90 struct at ats[2]; member in struct:evergreen_power_info
  /src/sys/compat/linux/arch/alpha/
linux_osf1.c 396 struct timespec ats, *ts = NULL; local in function:linux_sys_osf1_select
405 ats.tv_sec = otv.tv_sec;
406 ats.tv_nsec = otv.tv_usec * 1000;
407 ts = &ats;
  /src/sys/kern/
sys_select.c 180 struct timespec ats, *ts = NULL; local in function:sys___pselect50
185 error = copyin(SCARG(uap, ts), &ats, sizeof(ats));
188 ts = &ats;
213 struct timespec ats, *ts = NULL; local in function:sys___select50
224 TIMEVAL_TO_TIMESPEC(&atv, &ats);
225 ts = &ats;
581 struct timespec ats, *ts = NULL; local in function:sys_poll
584 ats.tv_sec = SCARG(uap, timeout) / 1000;
585 ats.tv_nsec = (SCARG(uap, timeout) % 1000) * 1000000
605 struct timespec ats, *ts = NULL; local in function:sys___pollts50
    [all...]
kern_time.c 264 struct timespec ats; local in function:sys___clock_gettime50
266 error = clock_gettime1(SCARG(uap, clock_id), &ats);
270 return copyout(&ats, SCARG(uap, tp), sizeof(ats));
283 struct timespec ats; local in function:sys___clock_settime50
285 if ((error = copyin(SCARG(uap, tp), &ats, sizeof(ats))) != 0)
288 return clock_settime1(l->l_proc, SCARG(uap, clock_id), &ats, true);
kern_event.c 2275 struct timespec ats, sleepts; local in function:kqueue_scan
2292 ats = *tsp;
2293 if (inittimeleft(&ats, &sleepts) == -1) {
2297 timeout = tstohz(&ats);
2322 gettimeleft(&ats, &sleepts)) > 0) {
  /src/sys/dev/ieee1394/
firewirereg.h 134 *arq, *atq, *ars, *ats, *it[FW_MAX_DMACH],*ir[FW_MAX_DMACH]; member in struct:firewire_comm
  /src/lib/libc/time/
localtime.c 257 __time_t ats[TZ_MAX_TIMES]; member in struct:state
711 = (timecnt * stored /* ats */
744 if (timecnt && attime <= sp->ats[timecnt - 1]) {
745 if (attime < sp->ats[timecnt - 1])
750 sp->ats[timecnt++] = attime;
903 __time_t t = ts->ats[i];
906 && t <= sp->ats[sp->timecnt - 1]))
912 sp->ats[sp->timecnt] = t;
1287 atlo = basep->ats[basep->timecnt - 1];
1398 sp->ats[timecnt] = janfirst
    [all...]
zic.c 2381 zic_t const *ats, unsigned char const *types)
2384 while (0 < r.count && ats[r.base] < lo) {
2409 while (0 < r.count && hi + 1 < ats[r.base + r.count - 1])
2431 /* Allocate the ATS and TYPES arrays via a single malloc,
2434 zic_t *ats = xmalloc(align_to(size_product(timecnt + !timecnt, local in function:writezone
2435 sizeof *ats + 1),
2437 void *typesptr = ats + timecnt;
2491 ats[i] = attypes[i].at;
2501 if (ats[i] > trans[j] - corr[j]) {
2502 ats[i] = tadd(ats[i], corr[j])
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/
si_dpm.h 674 struct at ats[2]; member in struct:evergreen_power_info

Completed in 114 milliseconds