Home
last modified time | relevance | path

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

/freebsd/sys/kern/
H A Dkern_time.c233 struct timespec ats; in sys_clock_gettime()
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()
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()
270 cputick2timespec(runtime, ats); in kern_thread_cputime()
274 kern_process_cputime(struct proc *targetp, struct timespec *ats) in kern_process_cputime()
232 struct timespec ats; sys_clock_gettime() local
243 cputick2timespec(uint64_t runtime,struct timespec * ats) cputick2timespec() argument
252 kern_thread_cputime(struct thread * targettd,struct timespec * ats) kern_thread_cputime() argument
273 kern_process_cputime(struct proc * targetp,struct timespec * ats) kern_process_cputime() argument
289 get_cputime(struct thread * td,clockid_t clock_id,struct timespec * ats) get_cputime() argument
317 kern_clock_gettime(struct thread * td,clockid_t clock_id,struct timespec * ats) kern_clock_gettime() argument
388 struct timespec ats; sys_clock_settime() local
402 kern_clock_settime(struct thread * td,clockid_t clock_id,struct timespec * ats) kern_clock_settime() argument
[all...]
/freebsd/contrib/tzcode/
H A Dlocaltime.c146 time_t ats[TZ_MAX_TIMES]; member
558 = (timecnt * stored /* ats */ in tzloadbody()
591 if (timecnt && attime <= sp->ats[timecnt - 1]) { in tzloadbody()
592 if (attime < sp->ats[timecnt - 1]) in tzloadbody()
597 sp->ats[timecnt++] = attime; in tzloadbody()
750 time_t t = ts->ats[i]; in tzloadbody()
753 && t <= sp->ats[sp->timecnt - 1])) in tzloadbody()
759 sp->ats[sp->timecnt] = t; in tzloadbody()
1127 atlo = basep->ats[basep->timecnt - 1]; in transtime()
1237 sp->ats[timecn in tzparse()
[all...]
H A Dzic.c2376 zic_t const *ats, unsigned char const *types) in limitrange() argument
2379 while (0 < r.count && ats[r.base] < lo) { in limitrange()
2404 while (0 < r.count && hi + 1 < ats[r.base + r.count - 1]) in limitrange()
2430 zic_t *ats = emalloc(align_to(size_product(timecnt + !timecnt, in writezone() local
2431 sizeof *ats + 1), in writezone()
2433 void *typesptr = ats + timecnt; in writezone()
2487 ats[i] = attypes[i].at; in writezone()
2497 if (ats[i] > trans[j] - corr[j]) { in writezone()
2498 ats[i] = tadd(ats[ in writezone()
[all...]
/freebsd/sys/sys/
H A Dsyscallsubr.h107 struct timespec *ats);
111 struct timespec *ats);
112 void kern_thread_cputime(struct thread *targettd, struct timespec *ats);
113 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.c220 xferq = fc->ats; in fw_asyreq()
576 fw_xferq_drain(fc->ats); in fw_drain_txq()
781 fc->ats->queued = 0; in fw_init()
786 fc->ats->buf = NULL; in fw_init()
791 fc->ats->flag = 0; in fw_init()
794 STAILQ_INIT(&fc->ats->q); in fw_init()
816 fc->ats->maxq = FWMAXQUEUE; in fw_init()
H A Dfirewirereg.h124 *arq, *atq, *ars, *ats, *it[FW_MAX_DMACH],*ir[FW_MAX_DMACH]; member
H A Dfwohci.c633 sc->fc.ats = &sc->atrs.xferq;
/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.c3038 struct timespec ats; in freebsd32_clock_gettime() local
3042 error = kern_clock_gettime(td, uap->clock_id, &ats); in freebsd32_clock_gettime()
3044 CP(ats, ats32, tv_sec); in freebsd32_clock_gettime()
3045 CP(ats, ats32, tv_nsec); in freebsd32_clock_gettime()
3055 struct timespec ats; in freebsd32_clock_settime() local
3062 CP(ats32, ats, tv_sec); in freebsd32_clock_settime()
3063 CP(ats32, ats, tv_nsec); in freebsd32_clock_settime()
3065 return (kern_clock_settime(td, uap->clock_id, &ats)); in freebsd32_clock_settime()
/freebsd/contrib/tcpdump/
H A DCREDITS13 Adam Sampson <ats at offog dot org>
/freebsd/crypto/openssl/
H A DCHANGES.md14855 *Arne Ansper <arne@ats.cyber.ee>, Bodo Moeller*
14960 *Bodo Moeller; problem pointed out by Arne Ansper <arne@ats.cyber.ee>*
17788 *Steve Henson, reported by Arne Ansper <arne@ats.cyber.ee>*
19227 *Arne Ansper <arne@ats.cyber.ee>*
19237 *Arne Ansper <arne@ats.cyber.ee>, integrated by Ben Laurie*
19593 *Arne Ansper <arne@ats.cyber.ee>*
19597 *Arne Ansper <arne@ats.cyber.ee>*
19601 *Arne Ansper <arne@ats.cyber.ee>*
19605 *Arne Ansper <arne@ats.cyber.ee>*
/freebsd/contrib/ncurses/
H A DNEWS14079 <ats@hubert.wustl.edu>).