Searched refs:ats (Results 1 - 11 of 11) sorted by relevance

/freebsd-13-stable/sys/kern/
H A Dkern_time.c235 struct timespec ats; local
238 error = kern_clock_gettime(td, uap->clock_id, &ats);
240 error = copyout(&ats, uap->tp, sizeof(ats));
246 cputick2timespec(uint64_t runtime, struct timespec *ats) argument
249 ats->tv_sec = runtime / 1000000;
250 ats->tv_nsec = runtime % 1000000 * 1000;
254 kern_thread_cputime(struct thread *targettd, struct timespec *ats) argument
271 cputick2timespec(runtime, ats);
275 kern_process_cputime(struct proc *targetp, struct timespec *ats) argument
291 get_cputime(struct thread *td, clockid_t clock_id, struct timespec *ats) argument
319 kern_clock_gettime(struct thread *td, clockid_t clock_id, struct timespec *ats) argument
390 struct timespec ats; local
404 kern_clock_settime(struct thread *td, clockid_t clock_id, struct timespec *ats) argument
[all...]
/freebsd-13-stable/contrib/tzcode/stdtime/
H A Dlocaltime.c149 time_t ats[TZ_MAX_TIMES]; member in struct:state
466 sp->timecnt * stored + /* ats */
475 sp->ats[i] = (stored == 4) ?
538 ** Out-of-sort ats should mean we're running on a
543 if (sp->ats[i] > sp->ats[i + 1]) {
557 sp->ats[j] = sp->ats[j + i];
599 ts->ats[i] <=
600 sp->ats[s
[all...]
/freebsd-13-stable/sys/amd64/vmm/amd/
H A Divrs_drv.c181 uint32_t end_id, uint8_t cfg, bool ats)
193 dev_cfg->enable_ats = ats;
180 ivhd_dev_add_entry(struct amdvi_softc *softc, uint32_t start_id, uint32_t end_id, uint8_t cfg, bool ats) argument
/freebsd-13-stable/contrib/tzcode/zic/
H A Dzic.c1457 zic_t ats[TZ_MAX_TIMES]; local
1499 ats[i] = attypes[i].at;
1508 if (ats[i] > trans[j] - corr[j]) {
1509 ats[i] = tadd(ats[i], corr[j]);
1520 while (timecnt32 > 0 && !is32(ats[timecnt32 - 1]))
1522 while (timecnt32 > 0 && !is32(ats[timei32])) {
1685 puttzcode((long) ats[i], fp);
1686 else puttzcode64(ats[i], fp);
1710 if (timecnt == 0 || trans[i] < ats[
[all...]
/freebsd-13-stable/sys/dev/firewire/
H A Dfirewirereg.h126 *arq, *atq, *ars, *ats, *it[FW_MAX_DMACH],*ir[FW_MAX_DMACH]; member in struct:firewire_comm
H A Dfirewire.c223 xferq = fc->ats;
579 fw_xferq_drain(fc->ats);
784 fc->ats->queued = 0;
789 fc->ats->buf = NULL;
794 fc->ats->flag = 0;
797 STAILQ_INIT(&fc->ats->q);
819 fc->ats->maxq = FWMAXQUEUE;
H A Dfwohci.c635 sc->fc.ats = &sc->atrs.xferq;
/freebsd-13-stable/sys/sys/
H A Dsyscallsubr.h104 struct timespec *ats);
108 struct timespec *ats);
109 void kern_thread_cputime(struct thread *targettd, struct timespec *ats);
110 void kern_process_cputime(struct proc *targetp, struct timespec *ats);
/freebsd-13-stable/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_consume.c639 const char *ats = "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"; local
642 assert(strlen(ats) == len && strlen(spaces) == len);
661 return (dt_printf(dtp, fp, "|%s%s %-9lld\n", ats + len - depth,
670 ats + len - depth, (long long)val / normal));
681 ats = &ats[len];
689 ats + len - depth, len, "", (long long)val / normal));
692 ats + len - depth, spaces + depth,
/freebsd-13-stable/cddl/contrib/opensolaris/cmd/dtrace/test/cmd/jdtrace/
H A DJDTrace.java401 String ats = ATS.substring(len);
409 ats.substring(len - depth), repeat(" ", len), val);
412 out.printf("%20s|%s%s %-9d\n", "", ats.substring(len - depth),
/freebsd-13-stable/sys/compat/freebsd32/
H A Dfreebsd32_misc.c2917 struct timespec ats; local
2921 error = kern_clock_gettime(td, uap->clock_id, &ats);
2923 CP(ats, ats32, tv_sec);
2924 CP(ats, ats32, tv_nsec);
2934 struct timespec ats; local
2941 CP(ats32, ats, tv_sec);
2942 CP(ats32, ats, tv_nsec);
2944 return (kern_clock_settime(td, uap->clock_id, &ats));

Completed in 271 milliseconds