HomeSort by: relevance | last modified time | path
    Searched refs:ats (Results 1 - 25 of 29) sorted by relevancy

1 2

  /src/sys/compat/common/
kern_select_50.c 111 struct timespec ats, *ts = NULL; local
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
153 timespec50_to_timespec(&ats50, &ats);
154 ts = &ats;
177 struct timespec ats, *ts = NULL; local
186 timespec50_to_timespec(&ats50, &ats);
187 ts = &ats;
    [all...]
kern_time_50.c 116 struct timespec ats; local
119 error = clock_gettime1(SCARG(uap, clock_id), &ats);
123 timespec_to_timespec50(&ats, &ats50);
138 struct timespec ats; local
144 timespec50_to_timespec(&ats50, &ats);
146 return clock_settime1(l->l_proc, SCARG(uap, clock_id), &ats,
160 struct timespec ats; local
163 error = clock_getres1(SCARG(uap, clock_id), &ats);
168 timespec_to_timespec50(&ats, &ats50);
  /src/sys/compat/netbsd32/
netbsd32_select.c 65 struct timespec ats, *ts = NULL; local
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
105 netbsd32_to_timespec(&ts32, &ats);
106 ts = &ats;
131 struct timespec ats, *ts = NULL; local
138 netbsd32_to_timespec(&ts32, &ats);
139 ts = &ats;
    [all...]
netbsd32_compat_50.c 132 struct timespec ats, *ts = NULL; local
142 ats.tv_sec = tv32.tv_sec;
143 ats.tv_nsec = tv32.tv_usec * 1000;
144 ts = &ats;
194 struct timespec ats; local
219 TIMEVAL_TO_TIMESPEC(&atv, &ats);
220 return settime(p, &ats);
326 struct timespec ats; local
329 error = clock_gettime1(SCARG(uap, clock_id), &ats);
333 netbsd32_from_timespec50(&ats, &ts32)
346 struct timespec ats; local
634 struct timespec ats, *ts = NULL; local
667 struct timespec ats, *ts = NULL; local
    [all...]
netbsd32_time.c 225 struct timespec ats; local
250 TIMEVAL_TO_TIMESPEC(&atv, &ats);
251 return settime(p, &ats);
305 struct timespec ats; local
308 error = clock_gettime1(SCARG(uap, clock_id), &ats);
312 netbsd32_from_timespec(&ats, &ts32);
324 struct timespec ats; local
330 netbsd32_to_timespec(&ts32, &ats);
331 return clock_settime1(l->l_proc, SCARG(uap, clock_id), &ats, true);
  /src/external/bsd/openldap/dist/contrib/ldapc++/src/
LDAPSchema.cpp 47 void LDAPSchema::setAttributeTypes (const StringList &ats) {
52 for (i = ats.begin(); i != ats.end(); i++) {
  /src/sys/kern/
sys_select.c 180 struct timespec ats, *ts = NULL; local
185 error = copyin(SCARG(uap, ts), &ats, sizeof(ats));
188 ts = &ats;
213 struct timespec ats, *ts = NULL; local
224 TIMEVAL_TO_TIMESPEC(&atv, &ats);
225 ts = &ats;
581 struct timespec ats, *ts = NULL; local
584 ats.tv_sec = SCARG(uap, timeout) / 1000;
585 ats.tv_nsec = (SCARG(uap, timeout) % 1000) * 1000000
605 struct timespec ats, *ts = NULL; local
    [all...]
kern_time.c 278 struct timespec ats; local
280 error = clock_gettime1(SCARG(uap, clock_id), &ats);
284 return copyout(&ats, SCARG(uap, tp), sizeof(ats));
297 struct timespec ats; local
299 if ((error = copyin(SCARG(uap, tp), &ats, sizeof(ats))) != 0)
302 return clock_settime1(l->l_proc, SCARG(uap, clock_id), &ats, true);
kern_event.c 2278 struct timespec ats, sleepts; local
2295 ats = *tsp;
2296 if (inittimeleft(&ats, &sleepts) == -1) {
2300 timeout = tstohz(&ats);
2325 gettimeleft(&ats, &sleepts)) > 0) {
  /src/sys/compat/linux/common/
linux_misc_notalpha.c 323 struct timespec ats; local
330 ats.tv_sec = tt;
331 ats.tv_nsec = 0;
333 if ((error = settime(l->l_proc, &ats)))
  /src/lib/libc/time/
localtime.c 562 __time_t ats[TZ_MAX_TIMES]; member in struct:state
1182 = (timecnt * stored /* ats */
1217 if (timecnt && attime <= sp->ats[timecnt - 1]) {
1218 if (attime < sp->ats[timecnt - 1])
1223 sp->ats[timecnt++] = attime;
1387 __time_t t = ts->ats[i];
1390 && t <= sp->ats[sp->timecnt - 1]))
1396 sp->ats[sp->timecnt] = t;
1771 atlo = basep->ats[basep->timecnt - 1];
1876 sp->ats[timecnt] = janfirst
    [all...]
zic.c 2638 zic_t const *ats, unsigned char const *types)
2641 while (0 < r.count && ats[r.base] < lo) {
2666 while (0 < r.count && hi + 1 < ats[r.base + r.count - 1])
2688 /* Allocate the ATS and TYPES arrays via a single malloc,
2691 zic_t *ats = xmalloc(align_to(size_product(timecnt + !timecnt, local
2692 sizeof *ats + 1),
2694 void *typesptr = ats + timecnt;
2765 ats[i] = attypes[i].at;
2775 if (leap[j].trans - leap[j].corr < ats[i]) {
2776 ats[i] = tadd(ats[i], leap[j].corr)
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/radeon/
cypress_dpm.h 90 struct at ats[2]; member in struct:evergreen_power_info
radeon_btc_dpm.c 1712 pi->rlp = eg_pi->ats[idx].rlp;
1713 pi->rmp = eg_pi->ats[idx].rmp;
1714 pi->lhp = eg_pi->ats[idx].lhp;
1715 pi->lmp = eg_pi->ats[idx].lmp;
2628 eg_pi->ats[0].rlp = RV770_RLP_DFLT;
2629 eg_pi->ats[0].rmp = RV770_RMP_DFLT;
2630 eg_pi->ats[0].lhp = RV770_LHP_DFLT;
2631 eg_pi->ats[0].lmp = RV770_LMP_DFLT;
2633 eg_pi->ats[1].rlp = BTC_RLP_UVD_DFLT;
2634 eg_pi->ats[1].rmp = BTC_RMP_UVD_DFLT
    [all...]
radeon_ni_dpm.c 4121 eg_pi->ats[0].rlp = RV770_RLP_DFLT;
4122 eg_pi->ats[0].rmp = RV770_RMP_DFLT;
4123 eg_pi->ats[0].lhp = RV770_LHP_DFLT;
4124 eg_pi->ats[0].lmp = RV770_LMP_DFLT;
4126 eg_pi->ats[1].rlp = BTC_RLP_UVD_DFLT;
4127 eg_pi->ats[1].rmp = BTC_RMP_UVD_DFLT;
4128 eg_pi->ats[1].lhp = BTC_LHP_UVD_DFLT;
4129 eg_pi->ats[1].lmp = BTC_LMP_UVD_DFLT;
  /src/sys/dev/ieee1394/
firewire.c 415 xferq = fc->ats;
498 mutex_enter(&fc->ats->q_mtx);
499 fw_xferq_drain(fc->ats);
500 mutex_exit(&fc->ats->q_mtx);
584 fc->ats->queued = 0;
589 fc->ats->buf = NULL;
594 fc->ats->flag = 0;
597 STAILQ_INIT(&fc->ats->q);
601 mutex_init(&fc->ats->q_mtx, MUTEX_DEFAULT, IPL_VM);
606 fc->ats->maxq = FWMAXQUEUE
    [all...]
firewirereg.h 134 *arq, *atq, *ars, *ats, *it[FW_MAX_DMACH],*ir[FW_MAX_DMACH]; member in struct:firewire_comm
  /src/sys/compat/linux/arch/alpha/
linux_osf1.c 396 struct timespec ats, *ts = NULL; local
405 ats.tv_sec = otv.tv_sec;
406 ats.tv_nsec = otv.tv_usec * 1000;
407 ts = &ats;
  /src/external/gpl3/gcc.old/dist/gcc/d/
d-attribs.cc 1093 int ats = 0; local
1096 ats++;
1098 if (ats != 1 && ats != 2)
  /src/external/cddl/osnet/dist/lib/libdtrace/common/
dt_consume.c 638 const char *ats = "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"; local
641 assert(strlen(ats) == len && strlen(spaces) == len);
660 return (dt_printf(dtp, fp, "|%s%s %-9lld\n", ats + len - depth,
669 ats + len - depth, (long long)val / normal));
680 ats = &ats[len];
688 ats + len - depth, len, "", (long long)val / normal));
691 ats + len - depth, spaces + depth,
  /src/external/public-domain/sqlite/dist/autosetup/
proj.tcl 1747 # proj-validate-no-unresolved-ats, erroring out if that does.
1769 proj-validate-no-unresolved-ats $fOut
1784 # @proj-validate-no-unresolved-ats filenames...
1798 proc proj-validate-no-unresolved-ats {args} {
  /src/external/gpl3/gcc/dist/gcc/
gimple-ssa-warn-access.cc 4022 for (tree ats = fnattr; (ats = lookup_attribute ("*dealloc", ats));
4023 ats = TREE_CHAIN (ats))
4025 tree args = TREE_VALUE (ats);
  /src/external/gpl3/gcc.old/dist/gcc/
gimple-ssa-warn-access.cc 4007 for (tree ats = fnattr; (ats = lookup_attribute ("*dealloc", ats));
4008 ats = TREE_CHAIN (ats))
4010 tree args = TREE_VALUE (ats);
  /src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/
si_dpm.h 674 struct at ats[2]; member in struct:evergreen_power_info
  /src/external/gpl3/gcc.old/dist/gcc/c-family/
c-attribs.cc 2677 int ats = 0; local
2680 ats++;
2682 if (ats != 1 && ats != 2)

Completed in 93 milliseconds

1 2