Searched refs:tsb (Results 1 - 14 of 14) sorted by relevance

/freebsd-10-stable/contrib/netbsd-tests/lib/libc/sys/
H A Dt_clock_gettime.c88 struct timespec tsa, tsb, tsl, res; local
109 CL(clock_gettime(CLOCK_REALTIME, &tsb));
110 diff = 1000000000LL * (tsb.tv_sec - tsa.tv_sec)
111 + tsb.tv_nsec - tsa.tv_nsec;
121 (uintmax_t)tsb.tv_sec, (uintmax_t)tsb.tv_nsec, diff);
123 elapsed = 1000000000LL * (tsb.tv_sec - tsl.tv_sec)
124 + tsb.tv_nsec - tsl.tv_nsec;
128 tsl = tsb;
135 tsa.tv_sec = tsb
[all...]
/freebsd-10-stable/tools/tools/netrate/netreceive/
H A Dnetreceive.c77 timespec_add(struct timespec *tsa, struct timespec *tsb) argument
80 tsa->tv_sec += tsb->tv_sec;
81 tsa->tv_nsec += tsb->tv_nsec;
89 timespec_sub(struct timespec *tsa, struct timespec *tsb) argument
92 tsa->tv_sec -= tsb->tv_sec;
93 tsa->tv_nsec -= tsb->tv_nsec;
/freebsd-10-stable/contrib/netbsd-tests/lib/libc/gen/
H A Dt_sleep.c268 struct timespec tsa, tsb, tslp, tremain; local
294 clock_gettime(CLOCK_REALTIME, &tsb);
297 timespecsub(&tsb, &tsa, &tremain);
301 delta1 = (int64_t)tsb.tv_sec - (int64_t)tsa.tv_sec;
303 delta1 += (int64_t)tsb.tv_nsec - (int64_t)tsa.tv_nsec;
/freebsd-10-stable/cddl/contrib/opensolaris/lib/libzfs/common/
H A Dlibzfs_diff.c255 struct zfs_stat fsb, tsb; local
276 MAXPATHLEN, &tsb);
291 tmode = tsb.zs_mode & S_IFMT;
293 tsb.zs_links == 0)
296 change = tsb.zs_links - fsb.zs_links;
300 print_link_change(fp, di, change, tobjname, &tsb);
303 print_file(fp, di, ZDIFF_ADDED, tobjname, &tsb);
314 if (fmode != tmode && fsb.zs_gen == tsb.zs_gen)
315 tsb.zs_gen++; /* Force a generational difference */
318 if (fsb.zs_gen == tsb
[all...]
/freebsd-10-stable/tools/tools/netrate/netsend/
H A Dnetsend.c71 timespec_add(struct timespec *tsa, struct timespec *tsb) argument
74 tsa->tv_sec += tsb->tv_sec;
75 tsa->tv_nsec += tsb->tv_nsec;
/freebsd-10-stable/contrib/ntp/ntpd/
H A Dntpd.c1391 l_fp tsa, tsb; local
1435 get_systime(&tsb);
1436 L_SUB(&tsb, &tsa);
1438 collect_timing(NULL, "processing", bufcount, &tsb);
1439 DPRINTF(2, ("processing time for %d buffers %s\n", bufcount, lfptoa(&tsb, 9)));
/freebsd-10-stable/lib/libkvm/
H A Dkvm_sparc64.c64 #include <machine/tsb.h>
176 _kvm_err(kd, kd->program, "tsb not found in dump");
/freebsd-10-stable/sys/sparc64/sparc64/
H A Ddump_machdep.c45 #include <machine/tsb.h>
H A Diommu.c395 uint64_t tsb; local
398 tsb = is->is_ptsb;
400 tsb |= is->is_tsbsize;
403 IOMMU_WRITE8(is, is_iommu, IMR_TSB, tsb);
H A Dtsb.c63 #include <machine/tsb.h>
193 * Traverse the tsb of a pmap, calling the callback function for any tte entry
198 * dimensions of the tsb size as an optimization.
H A Dtrap.c85 #include <machine/tsb.h>
H A Dmp_machdep.c93 #include <machine/tsb.h>
H A Dpmap.c97 #include <machine/tsb.h>
1264 CTR2(KTR_PMAP, "pmap_release: ctx=%#x tsb=%p",
H A Dexception.S71 #include <machine/tsb.h>

Completed in 422 milliseconds