| /netbsd-src/external/gpl3/binutils/dist/bfd/ |
| H A D | configure.ac | 388 tb= 405 …aarch64_elf32_be_vec) tb="$tb elf32-aarch64.lo elfxx-aarch64.lo elf-ifunc.lo elf32.lo $elf"; targ… 406 …aarch64_elf32_le_vec) tb="$tb elf32-aarch64.lo elfxx-aarch64.lo elf-ifunc.lo elf32.lo $elf"; targ… 407 …aarch64_elf64_be_vec) tb="$tb elf64-aarch64.lo elfxx-aarch64.lo elf-ifunc.lo elf64.lo $elf"; ta… 408 …aarch64_elf64_be_cloudabi_vec) tb="$tb elf64-aarch64.lo elfxx-aarch64.lo elf-ifunc.lo elf64.lo $el… 409 …aarch64_elf64_le_vec) tb="$tb elf64-aarch64.lo elfxx-aarch64.lo elf-ifunc.lo elf64.lo $elf"; ta… 410 …aarch64_elf64_le_cloudabi_vec) tb="$tb elf64-aarch64.lo elfxx-aarch64.lo elf-ifunc.lo elf64.lo $el… 411 aarch64_mach_o_vec) tb="$tb mach-o-aarch64.lo"; target_size=64 ;; 412 aarch64_pei_le_vec) tb="$tb pei-aarch64.lo pe-aarch64igen.lo $coff"; target_size=64 ;; 413 aarch64_pe_le_vec) tb="$tb pe-aarch64.lo pe-aarch64igen.lo $coff"; target_size=64 ;; [all …]
|
| H A D | configure | 15796 tb= 15813 …aarch64_elf32_be_vec) tb="$tb elf32-aarch64.lo elfxx-aarch64.lo elf-ifunc.lo elf32.lo $elf"; targ… 15814 …aarch64_elf32_le_vec) tb="$tb elf32-aarch64.lo elfxx-aarch64.lo elf-ifunc.lo elf32.lo $elf"; targ… 15815 …aarch64_elf64_be_vec) tb="$tb elf64-aarch64.lo elfxx-aarch64.lo elf-ifunc.lo elf64.lo $elf"; ta… 15816 …aarch64_elf64_be_cloudabi_vec) tb="$tb elf64-aarch64.lo elfxx-aarch64.lo elf-ifunc.lo elf64.lo $el… 15817 …aarch64_elf64_le_vec) tb="$tb elf64-aarch64.lo elfxx-aarch64.lo elf-ifunc.lo elf64.lo $elf"; ta… 15818 …aarch64_elf64_le_cloudabi_vec) tb="$tb elf64-aarch64.lo elfxx-aarch64.lo elf-ifunc.lo elf64.lo $el… 15819 aarch64_mach_o_vec) tb="$tb mach-o-aarch64.lo"; target_size=64 ;; 15820 aarch64_pei_le_vec) tb="$tb pei-aarch64.lo pe-aarch64igen.lo $coff"; target_size=64 ;; 15821 aarch64_pe_le_vec) tb="$tb pe-aarch64.lo pe-aarch64igen.lo $coff"; target_size=64 ;; [all …]
|
| /netbsd-src/sys/external/bsd/drm2/include/drm/ |
| H A D | task_barrier.h | 44 task_barrier_init(struct task_barrier *tb) in task_barrier_init() argument 47 mutex_init(&tb->tb_lock, MUTEX_DEFAULT, IPL_VM); in task_barrier_init() 48 cv_init(&tb->tb_cv, "taskbar"); in task_barrier_init() 49 tb->tb_cur = 0; in task_barrier_init() 50 tb->tb_gen = 0; in task_barrier_init() 51 tb->tb_max = 0; in task_barrier_init() 55 task_barrier_destroy(struct task_barrier *tb) in task_barrier_destroy() argument 58 KASSERT(tb->tb_cur == 0); in task_barrier_destroy() 59 cv_destroy(&tb->tb_cv); in task_barrier_destroy() 60 mutex_destroy(&tb->tb_lock); in task_barrier_destroy() [all …]
|
| /netbsd-src/external/gpl3/binutils.old/dist/bfd/ |
| H A D | configure.ac | 394 tb= 411 …aarch64_elf32_be_vec) tb="$tb elf32-aarch64.lo elfxx-aarch64.lo elf-ifunc.lo elf32.lo $elf"; targ… 412 …aarch64_elf32_le_vec) tb="$tb elf32-aarch64.lo elfxx-aarch64.lo elf-ifunc.lo elf32.lo $elf"; targ… 413 …aarch64_elf64_be_vec) tb="$tb elf64-aarch64.lo elfxx-aarch64.lo elf-ifunc.lo elf64.lo $elf"; ta… 414 …aarch64_elf64_be_cloudabi_vec) tb="$tb elf64-aarch64.lo elfxx-aarch64.lo elf-ifunc.lo elf64.lo $el… 415 …aarch64_elf64_le_vec) tb="$tb elf64-aarch64.lo elfxx-aarch64.lo elf-ifunc.lo elf64.lo $elf"; ta… 416 …aarch64_elf64_le_cloudabi_vec) tb="$tb elf64-aarch64.lo elfxx-aarch64.lo elf-ifunc.lo elf64.lo $el… 417 aarch64_mach_o_vec) tb="$tb mach-o-aarch64.lo"; target_size=64 ;; 418 aarch64_pei_vec) tb="$tb pei-aarch64.lo pe-aarch64igen.lo $coff"; target_size=64 ;; 419 alpha_ecoff_le_vec) tb="$tb coff-alpha.lo ecoff.lo $ecoff"; target_size=64 ;; [all …]
|
| /netbsd-src/sys/external/bsd/drm2/dist/include/drm/ |
| H A D | task_barrier.h | 57 static inline void task_barrier_init(struct task_barrier *tb) in task_barrier_init() argument 59 tb->n = 0; in task_barrier_init() 60 atomic_set(&tb->count, 0); in task_barrier_init() 61 sema_init(&tb->enter_turnstile, 0); in task_barrier_init() 62 sema_init(&tb->exit_turnstile, 0); in task_barrier_init() 65 static inline void task_barrier_add_task(struct task_barrier *tb) in task_barrier_add_task() argument 67 tb->n++; in task_barrier_add_task() 70 static inline void task_barrier_rem_task(struct task_barrier *tb) in task_barrier_rem_task() argument 72 tb->n--; in task_barrier_rem_task() 80 static inline void task_barrier_enter(struct task_barrier *tb) in task_barrier_enter() argument [all …]
|
| /netbsd-src/sys/dev/tprof/ |
| H A D | tprof.c | 209 tprof_backend_t *tb; in tprof_worker() local 224 tb = tprof_backend; in tprof_worker() 225 shouldstop = (tb == NULL || tb->tb_softc.sc_ctr_running_mask == 0); in tprof_worker() 289 tprof_backend_t *tb; in tprof_getinfo() local 295 if ((tb = tprof_backend) != NULL) in tprof_getinfo() 296 info->ti_ident = tb->tb_ops->tbo_ident(); in tprof_getinfo() 302 tprof_backend_t *tb; in tprof_getncounters() local 304 tb = tprof_backend; in tprof_getncounters() 305 if (tb == NULL) in tprof_getncounters() 308 *ncounters = tb->tb_ops->tbo_ncounters(); in tprof_getncounters() [all …]
|
| /netbsd-src/external/mit/isl/dist/test_inputs/codegen/omega/ |
| H A D | ts1d-mp-i_ts-m_b-0.in | 1 …tb, 1, proc, t + i, t - 500tb, 0] : 4000proc >= 3000 + t + i - 1000tb and 500tb <= t and 4000proc …
|
| H A D | ts1d-check0-0.in | 1 …tb, t + i, t - 1000tb, 1] : exists (e0 = [(t - 1000tb)/2]: 2e0 = t - 1000tb and 1000tb <= t and 10…
|
| /netbsd-src/external/mit/lua/dist/src/ |
| H A D | lstring.c | 90 stringtable *tb = &G(L)->strt; in luaS_resize() local 91 int osize = tb->size; in luaS_resize() 94 tablerehash(tb->hash, osize, nsize); /* depopulate shrinking part */ in luaS_resize() 95 newvect = luaM_reallocvector(L, tb->hash, osize, nsize, TString*); in luaS_resize() 98 tablerehash(tb->hash, nsize, osize); /* restore to original size */ in luaS_resize() 102 tb->hash = newvect; in luaS_resize() 103 tb->size = nsize; in luaS_resize() 130 stringtable *tb = &G(L)->strt; in luaS_init() local 131 tb->hash = luaM_newvector(L, MINSTRTABSIZE, TString*); in luaS_init() 132 tablerehash(tb->hash, 0, MINSTRTABSIZE); /* clear array */ in luaS_init() [all …]
|
| /netbsd-src/sys/arch/powerpc/powerpc/ |
| H A D | clock.c | 144 u_long tb; in decr_intr() 177 tb = rtc_nanosecs(); in decr_intr() 180 __asm volatile ("mftb %0" : "=r"(tb)); in decr_intr() 182 ci->ci_lasttb = tb + ticks - ticks_per_intr; in decr_intr() 207 uint64_t tb, scratch; in delay() 209 uint64_t tb; in delay() 235 tb = mftb(); in delay() 237 tb += (n / 1000ULL) * ticks_per_msec; in delay() 240 tb += (n * 1000ULL + ns_per_tick - 1) / ns_per_tick; in delay() 243 : "=&r"(scratch) : "r"(tb) in delay() 143 u_long tb; decr_intr() local 206 uint64_t tb, scratch; delay() local 254 u_long tb; get_powerpc_timecount() local 270 u_long tb; get_601_timecount() local [all...] |
| /netbsd-src/sys/arch/bebox/stand/boot/ |
| H A D | clock.c | 46 u_quad_t tb; in mftb() local 49 : "=r"(tb), "=r"(scratch)); in mftb() 50 return (tb); in mftb() 59 u_quad_t tb; in delay() local 62 tb = mftb(); in delay() 63 tb += (n * 1000 + NS_PER_TICK - 1) / NS_PER_TICK; in delay() 64 tbh = tb >> 32; in delay() 65 tbl = tb; in delay()
|
| /netbsd-src/external/bsd/libbind/dist/irs/ |
| H A D | irpmarshall.c | 243 char *tb = &tmpbuf[0]; in irp_unmarshall_pw() local 264 tb = tmpbuf; in irp_unmarshall_pw() 265 if (getfield(&tb, sizeof tmpbuf, &p, fieldsep) == NULL || in irp_unmarshall_pw() 266 strlen(tb) == 0) { in irp_unmarshall_pw() 269 t = strtol(tmpbuf, &tb, 10); in irp_unmarshall_pw() 270 if (*tb) { in irp_unmarshall_pw() 281 tb = tmpbuf; in irp_unmarshall_pw() 282 if (getfield(&tb, sizeof tmpbuf, &p, fieldsep) == NULL || in irp_unmarshall_pw() 283 strlen(tb) == 0) { in irp_unmarshall_pw() 286 t = strtol(tmpbuf, &tb, 10); in irp_unmarshall_pw() [all …]
|
| /netbsd-src/external/cddl/osnet/dist/uts/common/fs/zfs/ |
| H A D | sa.c | 410 sa_lot_t *tb, *findtb; in sa_add_layout_entry() local 415 tb = kmem_zalloc(sizeof (sa_lot_t), KM_SLEEP); in sa_add_layout_entry() 416 tb->lot_attr_count = attr_count; in sa_add_layout_entry() 420 tb->lot_attrs = kmem_alloc(sizeof (sa_attr_type_t) * attr_count, in sa_add_layout_entry() 422 bcopy(attrs, tb->lot_attrs, sizeof (sa_attr_type_t) * attr_count); in sa_add_layout_entry() 423 tb->lot_num = lot_num; in sa_add_layout_entry() 424 tb->lot_hash = hash; in sa_add_layout_entry() 425 tb->lot_instance = 0; in sa_add_layout_entry() 442 list_create(&tb->lot_idx_tab, sizeof (sa_idx_tab_t), in sa_add_layout_entry() 446 if (sa->sa_attr_table[tb->lot_attrs[i]].sa_length == 0) in sa_add_layout_entry() [all …]
|
| /netbsd-src/sys/arch/rs6000/stand/boot/ |
| H A D | clock.c | 51 u_quad_t tb; in mftb() local 54 : "=r"(tb), "=r"(scratch)); in mftb() 55 return (tb); in mftb() 75 u_quad_t tb; in delay() local 99 tb = mftb(); in delay() 100 tb += (n * 1000 + ns_per_tick - 1) / ns_per_tick; in delay() 101 tbh = tb >> 32; in delay() 102 tbl = tb; in delay()
|
| /netbsd-src/sys/arch/prep/stand/boot/ |
| H A D | clock.c | 51 u_quad_t tb; in mftb() local 54 : "=r"(tb), "=r"(scratch)); in mftb() 55 return (tb); in mftb() 75 u_quad_t tb; in delay() local 98 tb = mftb(); in delay() 99 tb += (n * 1000 + ns_per_tick - 1) / ns_per_tick; in delay() 100 tbh = tb >> 32; in delay() 101 tbl = tb; in delay()
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/ |
| H A D | arrayop.d | 50 Type tb = e.type.toBasetype(); in isArrayOpValid() local 51 if (tb.ty == Tarray || tb.ty == Tsarray) in isArrayOpValid() 81 Type tb = e.type.toBasetype(); in isNonAssignmentArrayOp() local 82 if (tb.ty == Tarray || tb.ty == Tsarray) in isNonAssignmentArrayOp() 120 Type tb = e.type.toBasetype(); in arrayOp() local 121 assert(tb.ty == Tarray || tb.ty == Tsarray); in arrayOp() 122 Type tbn = tb.nextOf().toBasetype(); in arrayOp() 222 Type tb = e.type.toBasetype(); in buildArrayOp() local 223 if (tb.ty != Tarray && tb.ty != Tsarray) // hoist scalar expressions in buildArrayOp() 240 Type tb = e.type.toBasetype(); in buildArrayOp() local [all …]
|
| H A D | dcast.d | 179 Type tb = result.type.toBasetype(); in implicitCastTo() local 180 if (auto ta = tb.isTypeDArray()) in implicitCastTo() 193 Type tb = t.toBasetype(); in implicitCastTo() local 194 Type tx = (tb.ty == Tsarray) in implicitCastTo() 195 ? tb.nextOf().sarrayOf(ale.elements ? ale.elements.dim : 0) in implicitCastTo() 196 : tb.nextOf().arrayOf(); in implicitCastTo() 305 Type tb = t.toBasetype(); in implicitConvTo() local 308 if (typeb.ty != Tpointer || tb.ty != Tpointer) in implicitConvTo() 313 if (t1b.ty == Tpointer && t2b.isintegral() && t1b.equivalent(tb)) in implicitConvTo() 320 if (t2b.ty == Tpointer && t1b.isintegral() && t2b.equivalent(tb)) in implicitConvTo() [all …]
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/ |
| H A D | dcast.c | 133 Type *tb = result->type->toBasetype(); in implicitCastTo() local 134 if (tb->ty == Tarray && global.params.useTypeInfo && Type::dtypeinfo) in implicitCastTo() 135 semanticTypeInfo(sc, ((TypeDArray *)tb)->next); in implicitCastTo() 148 Type *tb = t->toBasetype(); in implicitCastTo() local 150 if (tb->ty == Tsarray) in implicitCastTo() 151 tx = tb->nextOf()->sarrayOf(ale->elements ? ale->elements->dim : 0); in implicitCastTo() 153 tx = tb->nextOf()->arrayOf(); in implicitCastTo() 257 Type *tb = t->toBasetype(); in implicitConvTo() local 258 if (typeb->ty != Tpointer || tb->ty != Tpointer) in implicitConvTo() 264 t1b->equivalent(tb)) in implicitConvTo() [all …]
|
| H A D | arrayop.c | 112 Type *tb = e->type->toBasetype(); in isArrayOpValid() local 113 if (tb->ty == Tarray || tb->ty == Tsarray) in isArrayOpValid() 148 Type *tb = e->type->toBasetype(); in isNonAssignmentArrayOp() local 149 if (tb->ty == Tarray || tb->ty == Tsarray) in isNonAssignmentArrayOp() 177 Type *tb = e->type->toBasetype(); in arrayOp() local 178 assert(tb->ty == Tarray || tb->ty == Tsarray); in arrayOp() 179 Type *tbn = tb->nextOf()->toBasetype(); in arrayOp() 283 Type *tb = e->type->toBasetype(); in buildArrayIdent() local 284 if (tb->ty == Tarray || tb->ty == Tsarray) in buildArrayIdent() 368 Type *tb = e->type->toBasetype(); in buildArrayIdent() local [all …]
|
| /netbsd-src/sys/dev/ata/ |
| H A D | ata_recovery.c | 74 uint8_t *tb, cksum, page; in ata_read_log_ext_ncq() local 85 tb = chp->recovery_blk; in ata_read_log_ext_ncq() 86 memset(tb, 0, sizeof(chp->recovery_blk)); in ata_read_log_ext_ncq() 103 xfer->c_ata_c.data = tb; in ata_read_log_ext_ncq() 116 cksum += tb[i]; in ata_read_log_ext_ncq() 125 if (tb[0] & WDCC_LOG_NQ) { in ata_read_log_ext_ncq() 131 *slot = tb[0] & 0x1f; in ata_read_log_ext_ncq() 132 *status = tb[2]; in ata_read_log_ext_ncq() 133 *err = tb[3]; in ata_read_log_ext_ncq()
|
| /netbsd-src/sys/arch/powerpc/ibm4xx/ |
| H A D | clock.c | 218 u_long tb; in get_ppc4xx_timecount() local 222 tb = mftbl(); in get_ppc4xx_timecount() 225 return tb; in get_ppc4xx_timecount() 234 u_quad_t tb; in delay() local 237 tb = mftb(); in delay() 239 tb += (n * 1000ULL + ns_per_tick - 1) / ns_per_tick; in delay() 240 tbh = tb >> 32; in delay() 241 tbl = tb; in delay()
|
| /netbsd-src/etc/etc.vax/ |
| H A D | disktab | 30 :pb#33440:ob#16000:bb#8192:fb#1024:tb=swap:\ 41 :pb#33440:ob#16416:bb#8192:fb#1024:tb=swap:\ 53 :pb#33440:ob#15884:bb#8192:fb#1024:tb=swap:\ 64 :pb#33440:ob#16058:bb#8192:fb#1024:tb=swap:\ 75 :pb#33440:ob#15884:bb#8192:fb#1024:tb=swap:\ 86 :pb#66880:ob#16000:bb#8192:fb#1024:tb=swap:\ 100 :pb#66880:ob#16640:bb#8192:fb#1024:tb=swap:\ 112 :pb#33440:ob#16000:bb#8192:fb#1024:tb=swap:\ 123 :pb#33440:ob#16384:bb#8192:fb#1024:tb=swap:\ 135 :pb#66880:ob#16320:bb#8192:fb#1024:tb=swap:\ [all …]
|
| /netbsd-src/external/lgpl3/gmp/dist/mini-gmp/tests/ |
| H A D | t-gcd.c | 34 mpz_t ta, tb, r; in gcdext_valid_p() local 59 mpz_init (tb); in gcdext_valid_p() 63 mpz_mul (tb, t, b); in gcdext_valid_p() 64 mpz_add (ta, ta, tb); in gcdext_valid_p() 70 mpz_clear (tb); in gcdext_valid_p() 78 mpz_tdiv_qr (tb, r, b, g); in gcdext_valid_p() 86 if (mpz_cmpabs (r, tb) > 0) in gcdext_valid_p() 99 mpz_clear (tb); in gcdext_valid_p()
|
| /netbsd-src/sys/arch/prep/prep/ |
| H A D | cpu.c | 118 uint64_t tb; in md_presync_timebase() local 121 tb = mftb(); in md_presync_timebase() 122 tb += 100000; /* 3ms @ 33MHz */ in md_presync_timebase() 124 h->hatch_tbu = tb >> 32; in md_presync_timebase() 125 h->hatch_tbl = tb & 0xffffffff; in md_presync_timebase() 127 while (tb > mftb()) in md_presync_timebase()
|
| /netbsd-src/external/gpl3/binutils/dist/binutils/ |
| H A D | rename.c | 186 struct utimbuf tb; in set_times() local 188 tb.actime = statbuf->st_atime; in set_times() 189 tb.modtime = statbuf->st_mtime; in set_times() 190 result = utime (destination, &tb); in set_times() 192 long tb[2]; in set_times() local 194 tb[0] = statbuf->st_atime; in set_times() 195 tb[1] = statbuf->st_mtime; in set_times() 196 result = utime (destination, tb); in set_times()
|