| /freebsd/sys/kern/ |
| H A D | kern_time.c | 233 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 D | localtime.c | 248 time_t ats[TZ_MAX_TIMES]; member 793 if (timecnt && attime <= sp->ats[timecnt - 1]) { in tzloadbody() 794 if (attime < sp->ats[timecnt - 1]) in tzloadbody() 799 sp->ats[timecnt++] = attime; in tzloadbody() 952 time_t t = ts->ats[i]; in tzloadbody() 955 && t <= sp->ats[sp->timecnt - 1])) in tzloadbody() 961 sp->ats[sp->timecnt] = t; in tzloadbody() 1329 atlo = basep->ats[basep->timecnt - 1]; in tzparse() 1439 sp->ats[timecnt] = janfirst; in tzparse() 1441 (&sp->ats[timecnt], in tzparse() [all …]
|
| H A D | zic.c | 2412 zic_t const *ats, unsigned char const *types) in limitrange() argument 2415 while (0 < r.count && ats[r.base] < lo) { in limitrange() 2440 while (0 < r.count && hi + 1 < ats[r.base + r.count - 1]) in limitrange() 2466 zic_t *ats = xmalloc(align_to(size_product(timecnt + !timecnt, in writezone() local 2467 sizeof *ats + 1), in writezone() 2469 void *typesptr = ats + timecnt; in writezone() 2523 ats[i] = attypes[i].at; in writezone() 2533 if (ats[i] > trans[j] - corr[j]) { in writezone() 2534 ats[i] = tadd(ats[i], corr[j]); in writezone() 2545 ats, types); in writezone() [all …]
|
| /freebsd/sys/sys/ |
| H A D | syscallsubr.h | 110 struct timespec *ats); 114 struct timespec *ats); 115 void kern_thread_cputime(struct thread *targettd, struct timespec *ats); 116 void kern_process_cputime(struct proc *targetp, struct timespec *ats);
|
| /freebsd/sys/amd64/vmm/amd/ |
| H A D | ivrs_drv.c | 181 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 D | JDTrace.java | 401 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 D | firewire.c | 220 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 D | firewirereg.h | 124 *arq, *atq, *ars, *ats, *it[FW_MAX_DMACH],*ir[FW_MAX_DMACH]; member
|
| H A D | fwohci.c | 633 sc->fc.ats = &sc->atrs.xferq;
|
| /freebsd/sys/contrib/device-tree/src/arm/allwinner/ |
| H A D | sun7i-a20-pcduino3-nano.dts | 2 * Copyright 2015-2020 Adam Sampson <ats@offog.org>
|
| /freebsd/cddl/contrib/opensolaris/lib/libdtrace/common/ |
| H A D | dt_consume.c | 678 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 D | freebsd32_misc.c | 3081 struct timespec ats; 3085 error = kern_clock_gettime(td, uap->clock_id, &ats); in freebsd32_nanosleep() 3087 CP(ats, ats32, tv_sec); in freebsd32_nanosleep() 3088 CP(ats, ats32, tv_nsec); in freebsd32_nanosleep() 3098 struct timespec ats; in freebsd32_clock_nanosleep() 3105 CP(ats32, ats, tv_sec); in freebsd32_user_clock_nanosleep() 3106 CP(ats32, ats, tv_nsec); in freebsd32_user_clock_nanosleep() 3108 return (kern_clock_settime(td, uap->clock_id, &ats)); in freebsd32_user_clock_nanosleep() 3132 struct timespec ats; freebsd32_clock_gettime() local 3149 struct timespec ats; freebsd32_clock_settime() local
|
| /freebsd/sys/contrib/device-tree/src/arm64/arm/ |
| H A D | fvp-base-revc.dts | 347 ats-supported;
|
| /freebsd/contrib/tcpdump/ |
| H A D | CREDITS | 13 Adam Sampson <ats at offog dot org>
|
| /freebsd/crypto/openssl/ |
| H A D | CHANGES.md | 16540 *Arne Ansper <arne@ats.cyber.ee>, Bodo Moeller* 16645 *Bodo Moeller; problem pointed out by Arne Ansper <arne@ats.cyber.ee>* 19473 *Steve Henson, reported by Arne Ansper <arne@ats.cyber.ee>* 20912 *Arne Ansper <arne@ats.cyber.ee>* 20922 *Arne Ansper <arne@ats.cyber.ee>, integrated by Ben Laurie* 21278 *Arne Ansper <arne@ats.cyber.ee>* 21282 *Arne Ansper <arne@ats.cyber.ee>* 21286 *Arne Ansper <arne@ats.cyber.ee>* 21290 *Arne Ansper <arne@ats.cyber.ee>*
|
| /freebsd/contrib/ncurses/ |
| H A D | NEWS | 14648 <ats@hubert.wustl.edu>).
|