| /netbsd-src/tests/lib/libc/sys/ |
| H A D | t_clock_gettime.c | 90 struct timespec tsa, tsb, tsl, res; in check_timecounter() local 111 CL(clock_gettime(CLOCK_REALTIME, &tsb)); in check_timecounter() 112 diff = 1000000000LL * (tsb.tv_sec - tsa.tv_sec) in check_timecounter() 113 + tsb.tv_nsec - tsa.tv_nsec; in check_timecounter() 123 (uintmax_t)tsb.tv_sec, (uintmax_t)tsb.tv_nsec, diff); in check_timecounter() 125 elapsed = 1000000000LL * (tsb.tv_sec - tsl.tv_sec) in check_timecounter() 126 + tsb.tv_nsec - tsl.tv_nsec; in check_timecounter() 130 tsl = tsb; in check_timecounter() 137 tsa.tv_sec = tsb.tv_sec; in check_timecounter() 138 tsa.tv_nsec = tsb.tv_nsec; in check_timecounter()
|
| /netbsd-src/external/cddl/osnet/dist/lib/libzfs/common/ |
| H A D | libzfs_diff.c | 264 struct zfs_stat fsb, tsb; in write_inuse_diffs_one() local 286 MAXPATHLEN, &tsb); in write_inuse_diffs_one() 301 tmode = tsb.zs_mode & S_IFMT; in write_inuse_diffs_one() 303 tsb.zs_links == 0) in write_inuse_diffs_one() 306 change = tsb.zs_links - fsb.zs_links; in write_inuse_diffs_one() 310 print_link_change(fp, di, change, tobjname, &tsb); in write_inuse_diffs_one() 313 print_file(fp, di, ZDIFF_ADDED, tobjname, &tsb); in write_inuse_diffs_one() 324 if (fmode != tmode && fsb.zs_gen == tsb.zs_gen) in write_inuse_diffs_one() 325 tsb.zs_gen++; /* Force a generational difference */ in write_inuse_diffs_one() 329 if (fsb.zs_gen == tsb.zs_gen) { in write_inuse_diffs_one() [all …]
|
| /netbsd-src/sys/dev/ic/ |
| H A D | rtw.c | 1191 rtw_txsoft_blk_init(struct rtw_txsoft_blk *tsb) in rtw_txsoft_blk_init() argument 1196 SIMPLEQ_INIT(&tsb->tsb_dirtyq); in rtw_txsoft_blk_init() 1197 SIMPLEQ_INIT(&tsb->tsb_freeq); in rtw_txsoft_blk_init() 1198 for (i = 0; i < tsb->tsb_ndesc; i++) { in rtw_txsoft_blk_init() 1199 ts = &tsb->tsb_desc[i]; in rtw_txsoft_blk_init() 1201 SIMPLEQ_INSERT_TAIL(&tsb->tsb_freeq, ts, ts_q); in rtw_txsoft_blk_init() 1203 tsb->tsb_tx_timer = 0; in rtw_txsoft_blk_init() 1208 rtw_txsoft_blk_init_all(struct rtw_txsoft_blk *tsb) in rtw_txsoft_blk_init_all() argument 1212 rtw_txsoft_blk_init(&tsb[pri]); in rtw_txsoft_blk_init_all() 1693 struct rtw_txsoft_blk *tsb) in rtw_txsofts_release() argument [all …]
|
| /netbsd-src/tests/lib/libc/gen/ |
| H A D | t_sleep.c | 262 struct timespec tsa, tsb, tslp, tremain; in sleeptest() local 288 clock_gettime(CLOCK_REALTIME, &tsb); in sleeptest() 291 timespecsub(&tsb, &tsa, &tremain); in sleeptest() 295 delta1 = (int64_t)tsb.tv_sec - (int64_t)tsa.tv_sec; in sleeptest() 297 delta1 += (int64_t)tsb.tv_nsec - (int64_t)tsa.tv_nsec; in sleeptest()
|
| /netbsd-src/sys/fs/msdosfs/ |
| H A D | msdosfs_vnops.c | 1432 struct timespec *ts = NULL, tsb; in msdosfs_detimes() local 1439 getnanotime(&tsb); in msdosfs_detimes() 1440 mod = ts = &tsb; in msdosfs_detimes() 1450 (getnanotime(&tsb), ts = &tsb) : ts; in msdosfs_detimes() 1457 (getnanotime(&tsb), ts = &tsb) : ts; in msdosfs_detimes()
|
| /netbsd-src/sys/arch/sparc64/sparc64/ |
| H A D | db_interface.c | 634 db_dump_tsb_common(pte_t *tsb) in db_dump_tsb_common() argument 640 tag = tsb[i].tag; in db_dump_tsb_common() 641 data = tsb[i].data; in db_dump_tsb_common() 647 tag = tsb[i].tag; in db_dump_tsb_common() 648 data = tsb[i].data; in db_dump_tsb_common()
|
| /netbsd-src/sys/arch/sparc64/include/ |
| H A D | pte.h | 82 /* If you know where a tte is in the tsb, how do you find its va? */ 83 #define TSBVA(i) ((tsb[(i)].tag.f.tag_va<<22)|(((i)<<13)&0x3ff000))
|
| /netbsd-src/sys/arch/sparc64/doc/ |
| H A D | TODO | 37 - sun4v tsb no need to lock... per cpu... anyway...
|
| /netbsd-src/external/gpl3/binutils/dist/opcodes/ |
| H A D | ChangeLog-2020 | 2439 * aarch64-tbl.h (aarch64_opcode_table): Add tsb.
|
| /netbsd-src/external/gpl3/gdb/dist/opcodes/ |
| H A D | ChangeLog-2020 | 2439 * aarch64-tbl.h (aarch64_opcode_table): Add tsb.
|
| /netbsd-src/external/gpl3/binutils.old/dist/opcodes/ |
| H A D | ChangeLog-2020 | 2439 * aarch64-tbl.h (aarch64_opcode_table): Add tsb.
|
| /netbsd-src/external/gpl3/binutils/dist/gas/ |
| H A D | ChangeLog-2020 | 4438 * testsuite/gas/aarch64/system-2.d: Update -march and new tsb tests. 4439 * testsuite/gas/aarch64/system-2.s: Add new tsb tests.
|
| /netbsd-src/external/gpl3/binutils.old/dist/gas/ |
| H A D | ChangeLog-2020 | 4438 * testsuite/gas/aarch64/system-2.d: Update -march and new tsb tests. 4439 * testsuite/gas/aarch64/system-2.s: Add new tsb tests.
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARM/ |
| H A D | ARMInstrThumb2.td | 3552 "tsb", "\t$opt", []>, Requires<[IsThumb, HasV8_4a]> {
|
| H A D | ARMInstrInfo.td | 5103 "tsb", "\t$opt", []>, Requires<[IsARM, HasV8_4a]> {
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/ |
| H A D | AArch64InstrInfo.td | 807 def TSB : CRmSystemI<barrier_op, 0b010, "tsb", []> {
|
| /netbsd-src/etc/ |
| H A D | services | 6345 tsb 2741/tcp # TSB 6346 tsb 2741/udp # TSB
|