Home
last modified time | relevance | path

Searched refs:ats (Results 1 – 16 of 16) sorted by relevance

/freebsd/sys/kern/
H A Dkern_time.c233 struct timespec ats; in sys_clock_gettime() local
236 error = kern_clock_gettime(td, uap->clock_id, &ats); in sys_clock_gettime()
238 error = copyout(&ats, uap->tp, sizeof(ats)); in sys_clock_gettime()
244 cputick2timespec(uint64_t runtime, struct timespec *ats) in cputick2timespec() argument
248 ats->tv_sec = runtime / tr; in cputick2timespec()
249 ats->tv_nsec = ((runtime % tr) * 1000000000ULL) / tr; in cputick2timespec()
253 kern_thread_cputime(struct thread *targettd, struct timespec *ats) in kern_thread_cputime() argument
270 cputick2timespec(runtime, ats); in kern_thread_cputime()
274 kern_process_cputime(struct proc *targetp, struct timespec *ats) in kern_process_cputime() argument
286 cputick2timespec(runtime, ats); in kern_process_cputime()
[all …]
/freebsd/contrib/tzcode/
H A Dlocaltime.c511 time_t ats[TZ_MAX_TIMES]; member
1128 if (timecnt && attime <= sp->ats[timecnt - 1]) { in tzloadbody()
1129 if (attime < sp->ats[timecnt - 1]) in tzloadbody()
1134 sp->ats[timecnt++] = attime; in tzloadbody()
1279 time_t t = ts->ats[i]; in tzloadbody()
1282 && t <= sp->ats[sp->timecnt - 1])) in tzloadbody()
1286 sp->ats[sp->timecnt] = t; in tzloadbody()
1629 atlo = basep->ats[basep->timecnt - 1]; in tzparse()
1736 sp->ats[timecnt] = at_added = at; in tzparse()
1744 sp->ats[timecnt] = at_added = at; in tzparse()
[all …]
H A Dzic.c2636 zic_t const *ats, unsigned char const *types) in limitrange() argument
2639 while (0 < r.count && ats[r.base] < lo) { in limitrange()
2664 while (0 < r.count && hi + 1 < ats[r.base + r.count - 1]) in limitrange()
2689 zic_t *ats = xmalloc(align_to(size_product(timecnt + !timecnt, in writezone() local
2690 sizeof *ats + 1), in writezone()
2692 void *typesptr = ats + timecnt; in writezone()
2763 ats[i] = attypes[i].at; in writezone()
2773 if (leap[j].trans - leap[j].corr < ats[i]) { in writezone()
2774 ats[i] = tadd(ats[i], leap[j].corr); in writezone()
2785 ats, types); in writezone()
[all …]
/freebsd/sys/sys/
H A Dsyscallsubr.h123 struct timespec *ats);
127 struct timespec *ats);
128 void kern_thread_cputime(struct thread *targettd, struct timespec *ats);
129 void kern_process_cputime(struct proc *targetp, struct timespec *ats);
/freebsd/sys/amd64/vmm/amd/
H A Divrs_drv.c181 uint32_t end_id, uint8_t cfg, bool ats) in ivhd_dev_add_entry() argument
201 dev_cfg->enable_ats = ats; in ivhd_dev_add_entry()
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/cmd/jdtrace/
H A DJDTrace.java401 String ats = ATS.substring(len); in printDistributionLine() local
409 ats.substring(len - depth), repeat(" ", len), val); in printDistributionLine()
412 out.printf("%20s|%s%s %-9d\n", "", ats.substring(len - depth), in printDistributionLine()
/freebsd/sys/dev/firewire/
H A Dfirewire.c242 xferq = fc->ats; in fw_asyreq()
622 fw_xferq_drain(fc->ats); in fw_drain_txq()
839 fc->ats->queued = 0; in fw_init()
844 fc->ats->buf = NULL; in fw_init()
849 fc->ats->flag = 0; in fw_init()
852 STAILQ_INIT(&fc->ats->q); in fw_init()
874 fc->ats->maxq = FWMAXQUEUE; in fw_init()
H A Dfirewirereg.h158 *arq, *atq, *ars, *ats, *it[FW_MAX_DMACH],*ir[FW_MAX_DMACH]; member
H A Dfwohci.c645 sc->fc.ats = &sc->atrs.xferq; in fwohci_init()
/freebsd/sys/contrib/device-tree/src/arm/allwinner/
H A Dsun7i-a20-pcduino3-nano.dts2 * Copyright 2015-2020 Adam Sampson <ats@offog.org>
/freebsd/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_consume.c678 const char *ats = "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"; in dt_print_quantline() local
681 assert(strlen(ats) == len && strlen(spaces) == len); in dt_print_quantline()
700 return (dt_printf(dtp, fp, "|%s%s %-9lld\n", ats + len - depth, in dt_print_quantline()
709 ats + len - depth, (long long)val / normal)); in dt_print_quantline()
720 ats = &ats[len]; in dt_print_quantline()
728 ats + len - depth, len, "", (long long)val / normal)); in dt_print_quantline()
731 ats + len - depth, spaces + depth, in dt_print_quantline()
/freebsd/sys/compat/freebsd32/
H A Dfreebsd32_misc.c3079 struct timespec ats; in freebsd32_clock_gettime() local
3083 error = kern_clock_gettime(td, uap->clock_id, &ats); in freebsd32_clock_gettime()
3085 CP(ats, ats32, tv_sec); in freebsd32_clock_gettime()
3086 CP(ats, ats32, tv_nsec); in freebsd32_clock_gettime()
3096 struct timespec ats; in freebsd32_clock_settime() local
3103 CP(ats32, ats, tv_sec); in freebsd32_clock_settime()
3104 CP(ats32, ats, tv_nsec); in freebsd32_clock_settime()
3106 return (kern_clock_settime(td, uap->clock_id, &ats)); in freebsd32_clock_settime()
/freebsd/sys/contrib/device-tree/src/arm64/arm/
H A Dfvp-base-revc.dts347 ats-supported;
/freebsd/contrib/tcpdump/
H A DCREDITS13 Adam Sampson <ats at offog dot org>
/freebsd/crypto/openssl/
H A DCHANGES.md17227 *Arne Ansper <arne@ats.cyber.ee>, Bodo Moeller*
17332 *Bodo Moeller; problem pointed out by Arne Ansper <arne@ats.cyber.ee>*
20160 *Steve Henson, reported by Arne Ansper <arne@ats.cyber.ee>*
21599 *Arne Ansper <arne@ats.cyber.ee>*
21609 *Arne Ansper <arne@ats.cyber.ee>, integrated by Ben Laurie*
21965 *Arne Ansper <arne@ats.cyber.ee>*
21969 *Arne Ansper <arne@ats.cyber.ee>*
21973 *Arne Ansper <arne@ats.cyber.ee>*
21977 *Arne Ansper <arne@ats.cyber.ee>*
/freebsd/contrib/ncurses/
H A DNEWS14648 <ats@hubert.wustl.edu>).