| /netbsd-src/sys/compat/netbsd32/ |
| H A D | netbsd32_select.c | 65 struct timespec ats, *ts = NULL; in netbsd32___select50() local 75 ats.tv_sec = tv32.tv_sec; in netbsd32___select50() 76 ats.tv_nsec = tv32.tv_usec * 1000; in netbsd32___select50() 77 ts = &ats; in netbsd32___select50() 98 struct timespec ats, *ts = NULL; in netbsd32___pselect50() local 105 netbsd32_to_timespec(&ts32, &ats); in netbsd32___pselect50() 106 ts = &ats; in netbsd32___pselect50() 131 struct timespec ats, *ts = NULL; in netbsd32___pollts50() local 138 netbsd32_to_timespec(&ts32, &ats); in netbsd32___pollts50() 139 ts = &ats; in netbsd32___pollts50()
|
| H A D | netbsd32_compat_50.c | 132 struct timespec ats, *ts = NULL; in compat_50_netbsd32_select() local 142 ats.tv_sec = tv32.tv_sec; in compat_50_netbsd32_select() 143 ats.tv_nsec = tv32.tv_usec * 1000; in compat_50_netbsd32_select() 144 ts = &ats; in compat_50_netbsd32_select() 194 struct timespec ats; in compat_50_netbsd32_settimeofday() local 219 TIMEVAL_TO_TIMESPEC(&atv, &ats); in compat_50_netbsd32_settimeofday() 220 return settime(p, &ats); in compat_50_netbsd32_settimeofday() 326 struct timespec ats; in compat_50_netbsd32_clock_gettime() local 329 error = clock_gettime1(SCARG(uap, clock_id), &ats); in compat_50_netbsd32_clock_gettime() 333 netbsd32_from_timespec50(&ats, &ts32); in compat_50_netbsd32_clock_gettime() [all …]
|
| H A D | netbsd32_time.c | 225 struct timespec ats; in netbsd32___settimeofday50() local 250 TIMEVAL_TO_TIMESPEC(&atv, &ats); in netbsd32___settimeofday50() 251 return settime(p, &ats); in netbsd32___settimeofday50() 305 struct timespec ats; in netbsd32___clock_gettime50() local 308 error = clock_gettime1(SCARG(uap, clock_id), &ats); in netbsd32___clock_gettime50() 312 netbsd32_from_timespec(&ats, &ts32); in netbsd32___clock_gettime50() 324 struct timespec ats; in netbsd32___clock_settime50() local 330 netbsd32_to_timespec(&ts32, &ats); in netbsd32___clock_settime50() 331 return clock_settime1(l->l_proc, SCARG(uap, clock_id), &ats, true); in netbsd32___clock_settime50()
|
| /netbsd-src/sys/compat/common/ |
| H A D | kern_select_50.c | 111 struct timespec ats, *ts = NULL; in compat_50_sys_select() local 123 ats.tv_sec = atv50.tv_sec; in compat_50_sys_select() 124 ats.tv_nsec = atv50.tv_usec * 1000; in compat_50_sys_select() 125 ts = &ats; in compat_50_sys_select() 145 struct timespec ats, *ts = NULL; in compat_50_sys_pselect() local 153 timespec50_to_timespec(&ats50, &ats); in compat_50_sys_pselect() 154 ts = &ats; in compat_50_sys_pselect() 177 struct timespec ats, *ts = NULL; in compat_50_sys_pollts() local 186 timespec50_to_timespec(&ats50, &ats); in compat_50_sys_pollts() 187 ts = &ats; in compat_50_sys_pollts()
|
| H A D | kern_time_50.c | 116 struct timespec ats; in compat_50_sys_clock_gettime() local 119 error = clock_gettime1(SCARG(uap, clock_id), &ats); in compat_50_sys_clock_gettime() 123 timespec_to_timespec50(&ats, &ats50); in compat_50_sys_clock_gettime() 138 struct timespec ats; in compat_50_sys_clock_settime() local 144 timespec50_to_timespec(&ats50, &ats); in compat_50_sys_clock_settime() 146 return clock_settime1(l->l_proc, SCARG(uap, clock_id), &ats, in compat_50_sys_clock_settime() 160 struct timespec ats; in compat_50_sys_clock_getres() local 163 error = clock_getres1(SCARG(uap, clock_id), &ats); in compat_50_sys_clock_getres() 168 timespec_to_timespec50(&ats, &ats50); in compat_50_sys_clock_getres()
|
| /netbsd-src/sys/kern/ |
| H A D | sys_select.c | 180 struct timespec ats, *ts = NULL; in sys___pselect50() local 185 error = copyin(SCARG(uap, ts), &ats, sizeof(ats)); in sys___pselect50() 188 ts = &ats; in sys___pselect50() 213 struct timespec ats, *ts = NULL; in sys___select50() local 224 TIMEVAL_TO_TIMESPEC(&atv, &ats); in sys___select50() 225 ts = &ats; in sys___select50() 581 struct timespec ats, *ts = NULL; in pollscan() 584 ats.tv_sec = SCARG(uap, timeout) / 1000; in pollscan() 585 ats in pollscan() 476 struct timespec ats, *ts = NULL; sys_poll() local 500 struct timespec ats, *ts = NULL; sys___pollts50() local [all...] |
| H A D | kern_time.c | 264 struct timespec ats; 266 error = clock_gettime1(SCARG(uap, clock_id), &ats); in sys___clock_settime50() 270 return copyout(&ats, SCARG(uap, tp), sizeof(ats)); in sys___clock_settime50() 283 struct timespec ats; in clock_settime1() 285 if ((error = copyin(SCARG(uap, tp), &ats, sizeof(ats))) != 0) in clock_settime1() 288 return clock_settime1(l->l_proc, SCARG(uap, clock_id), &ats, true); in clock_settime1() 254 struct timespec ats; sys___clock_gettime50() local 273 struct timespec ats; sys___clock_settime50() local
|
| H A D | kern_event.c | 2275 struct timespec ats, sleepts; in kqueue_scan() local 2292 ats = *tsp; in kqueue_scan() 2293 if (inittimeleft(&ats, &sleepts) == -1) { in kqueue_scan() 2297 timeout = tstohz(&ats); in kqueue_scan() 2322 gettimeleft(&ats, &sleepts)) > 0) { in kqueue_scan()
|
| /netbsd-src/lib/libc/time/ |
| H A D | localtime.c | 257 __time_t ats[TZ_MAX_TIMES]; in detzcode() 711 = (timecnt * stored /* ats */ in tzloadbody() 744 if (timecnt && attime <= sp->ats[timecnt - 1]) { in tzloadbody() 745 if (attime < sp->ats[timecnt - 1]) in tzloadbody() 750 sp->ats[timecnt++] = attime; in tzloadbody() 903 __time_t t = ts->ats[i]; in getnum() 906 && t <= sp->ats[sp->timecnt - 1])) in getnum() 912 sp->ats[sp->timecnt] = t; in getnum() 1287 atlo = basep->ats[basep->timecnt - 1]; in tzparse() 1398 sp->ats[timecn in tzparse() 137 __time_t ats[TZ_MAX_TIMES]; global() member [all...] |
| H A D | zic.c | 2350 zic_t const *ats, unsigned char const *types) in limitrange() 2353 while (0 < r.count && ats[r.base] < lo) { 2378 while (0 < r.count && hi + 1 < ats[r.base + r.count - 1]) in writezone() 2403 zic_t *ats = xmalloc(align_to(size_product(timecnt + !timecnt, in writezone() 2404 sizeof *ats + 1), in writezone() 2406 void *typesptr = ats + timecnt; in writezone() 2460 ats[i] = attypes[i].at; in writezone() 2470 if (ats[i] > trans[j] - corr[j]) { in writezone() 2471 ats[i] = tadd(ats[ in writezone() 2314 limitrange(struct timerange r,zic_t lo,zic_t hi,zic_t const * ats,unsigned char const * types) limitrange() argument 2367 zic_t *ats = emalloc(align_to(size_product(timecnt + !timecnt, writezone() local [all...] |
| /netbsd-src/external/bsd/openldap/dist/contrib/ldapc++/src/ |
| H A D | LDAPSchema.cpp | 47 void LDAPSchema::setAttributeTypes (const StringList &ats) { in setAttributeTypes() argument 52 for (i = ats.begin(); i != ats.end(); i++) { in setAttributeTypes()
|
| /netbsd-src/sys/compat/linux/common/ |
| H A D | linux_misc_notalpha.c | 323 struct timespec ats; in linux_sys_stime() local 330 ats.tv_sec = tt; in linux_sys_stime() 331 ats.tv_nsec = 0; in linux_sys_stime() 333 if ((error = settime(l->l_proc, &ats))) in linux_sys_stime()
|
| /netbsd-src/sys/external/bsd/drm2/dist/drm/radeon/ |
| H A D | radeon_btc_dpm.c | 1712 pi->rlp = eg_pi->ats[idx].rlp; in btc_set_at_for_uvd() 1713 pi->rmp = eg_pi->ats[idx].rmp; in btc_set_at_for_uvd() 1714 pi->lhp = eg_pi->ats[idx].lhp; in btc_set_at_for_uvd() 1715 pi->lmp = eg_pi->ats[idx].lmp; in btc_set_at_for_uvd() 2628 eg_pi->ats[0].rlp = RV770_RLP_DFLT; in btc_dpm_init() 2629 eg_pi->ats[0].rmp = RV770_RMP_DFLT; in btc_dpm_init() 2630 eg_pi->ats[0].lhp = RV770_LHP_DFLT; in btc_dpm_init() 2631 eg_pi->ats[0].lmp = RV770_LMP_DFLT; in btc_dpm_init() 2633 eg_pi->ats[1].rlp = BTC_RLP_UVD_DFLT; in btc_dpm_init() 2634 eg_pi->ats[1].rmp = BTC_RMP_UVD_DFLT; in btc_dpm_init() [all …]
|
| H A D | cypress_dpm.h | 90 struct at ats[2]; member
|
| H A D | radeon_ni_dpm.c | 4121 eg_pi->ats[0].rlp = RV770_RLP_DFLT; in ni_dpm_init() 4122 eg_pi->ats[0].rmp = RV770_RMP_DFLT; in ni_dpm_init() 4123 eg_pi->ats[0].lhp = RV770_LHP_DFLT; in ni_dpm_init() 4124 eg_pi->ats[0].lmp = RV770_LMP_DFLT; in ni_dpm_init() 4126 eg_pi->ats[1].rlp = BTC_RLP_UVD_DFLT; in ni_dpm_init() 4127 eg_pi->ats[1].rmp = BTC_RMP_UVD_DFLT; in ni_dpm_init() 4128 eg_pi->ats[1].lhp = BTC_LHP_UVD_DFLT; in ni_dpm_init() 4129 eg_pi->ats[1].lmp = BTC_LMP_UVD_DFLT; in ni_dpm_init()
|
| /netbsd-src/sys/dev/ieee1394/ |
| H A D | firewire.c | 415 xferq = fc->ats; in fw_asyreq() 498 mutex_enter(&fc->ats->q_mtx); in fw_drain_txq() 499 fw_xferq_drain(fc->ats); in fw_drain_txq() 500 mutex_exit(&fc->ats->q_mtx); in fw_drain_txq() 584 fc->ats->queued = 0; in fw_init() 589 fc->ats->buf = NULL; in fw_init() 594 fc->ats->flag = 0; in fw_init() 597 STAILQ_INIT(&fc->ats->q); in fw_init() 601 mutex_init(&fc->ats->q_mtx, MUTEX_DEFAULT, IPL_VM); in fw_init() 606 fc->ats->maxq = FWMAXQUEUE; in fw_init() [all …]
|
| H A D | firewirereg.h | 134 *arq, *atq, *ars, *ats, *it[FW_MAX_DMACH],*ir[FW_MAX_DMACH]; member
|
| /netbsd-src/sys/compat/linux/arch/alpha/ |
| H A D | linux_osf1.c | 396 struct timespec ats, *ts = NULL; in linux_sys_osf1_select() local 405 ats.tv_sec = otv.tv_sec; in linux_sys_osf1_select() 406 ats.tv_nsec = otv.tv_usec * 1000; in linux_sys_osf1_select() 407 ts = &ats; in linux_sys_osf1_select()
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/d/ |
| H A D | d-attribs.cc | 1093 int ats = 0; in d_handle_symver_attribute() local 1096 ats++; in d_handle_symver_attribute() 1098 if (ats != 1 && ats != 2) in d_handle_symver_attribute()
|
| /netbsd-src/external/cddl/osnet/dist/lib/libdtrace/common/ |
| H A D | dt_consume.c | 638 const char *ats = "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"; in dt_print_quantline() local 641 assert(strlen(ats) == len && strlen(spaces) == len); in dt_print_quantline() 660 return (dt_printf(dtp, fp, "|%s%s %-9lld\n", ats + len - depth, in dt_print_quantline() 669 ats + len - depth, (long long)val / normal)); in dt_print_quantline() 680 ats = &ats[len]; in dt_print_quantline() 688 ats + len - depth, len, "", (long long)val / normal)); in dt_print_quantline() 691 ats + len - depth, spaces + depth, in dt_print_quantline()
|
| /netbsd-src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/ |
| H A D | sun7i-a20-pcduino3-nano.dts | 2 * Copyright 2015-2020 Adam Sampson <ats@offog.org>
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/ |
| H A D | gimple-ssa-warn-access.cc | 4009 for (tree ats = fnattr; (ats = lookup_attribute ("*dealloc", ats)); in get_realloc_lhs() local 4010 ats = TREE_CHAIN (ats)) in get_realloc_lhs() 4012 tree args = TREE_VALUE (ats); in get_realloc_lhs()
|
| /netbsd-src/usr.bin/spell/spell/ |
| H A D | stop | 45 ats
|
| /netbsd-src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/ |
| H A D | si_dpm.h | 674 struct at ats[2]; member
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/c-family/ |
| H A D | c-attribs.c | 2318 int ats = 0; in handle_symver_attribute() local 2321 ats++; in handle_symver_attribute() 2323 if (ats != 1 && ats != 2) in handle_symver_attribute()
|