Searched refs:tci (Results 1 - 11 of 11) sorted by relevance

/netbsd-current/sys/kern/
H A Dkern_runq.c572 struct cpu_info *ci, *curci, *tci; local
612 tci = ci;
614 tspc = &tci->ci_schedstate;
616 sched_migratable(l, tci)) {
617 return tci;
619 tci = tci->ci_sibling[CPUREL_CORE];
620 } while (tci != ci);
636 tci = curci;
638 tspc = &tci
723 struct cpu_info *ci = curcpu(), *tci = NULL; local
800 sched_steal(struct cpu_info *ci, struct cpu_info *tci) argument
825 struct cpu_info *ci, *inner, *outer, *first, *tci, *mci; local
918 struct cpu_info *ci, *tci; local
1198 struct cpu_info *ci, *tci; local
[all...]
H A Dsys_pset.c390 struct cpu_info *tci; local
396 tci = sched_takecpu(t);
397 KASSERT(tci != ci);
398 lwp_migrate(t, tci);
H A Dkern_lwp.c1373 lwp_migrate(lwp_t *l, struct cpu_info *tci) argument
1379 KASSERT(tci != NULL);
1391 l->l_target_cpu = tci;
1397 if (l->l_cpu == tci) {
1403 tspc = &tci->ci_schedstate;
1406 l->l_target_cpu = tci;
1409 l->l_cpu = tci;
1414 l->l_cpu = tci;
1421 l->l_target_cpu = tci;
/netbsd-current/external/gpl3/gcc.old/dist/gcc/
H A Dipa-polymorphic-call.c1205 extr_type_from_vtbl_ptr_store (gimple *stmt, struct type_change_info *tci, argument
1225 if (tci->vtbl_ptr_ref && operand_equal_p (lhs, tci->vtbl_ptr_ref, 0))
1230 if (DECL_P (tci->instance))
1232 if (base != tci->instance)
1239 print_generic_expr (dump_file, tci->instance, TDF_SLIM);
1247 if (!operand_equal_p (tci->instance, TREE_OPERAND (base, 0), 0))
1254 print_generic_expr (dump_file, tci->instance, TDF_SLIM);
1268 print_generic_expr (dump_file, tci->instance, TDF_SLIM);
1277 else if (!operand_equal_p (tci
1337 record_known_type(struct type_change_info *tci, tree type, HOST_WIDE_INT offset) argument
1416 struct type_change_info *tci = (struct type_change_info *) data; local
1569 struct type_change_info tci; local
[all...]
H A Dipa-prop.c708 struct prop_type_change_info *tci = (struct prop_type_change_info *) data; local
712 tci->type_maybe_changed = true;
787 struct prop_type_change_info tci; local
812 tci.offset = offset;
813 tci.object = get_base_address (arg);
814 tci.type_maybe_changed = false;
818 &tci, NULL, NULL, fbi->aa_walk_budget + 1);
820 if (walked >= 0 && !tci.type_maybe_changed)
/netbsd-current/external/gpl3/gcc/dist/gcc/
H A Dipa-polymorphic-call.cc1209 extr_type_from_vtbl_ptr_store (gimple *stmt, struct type_change_info *tci, argument
1229 if (tci->vtbl_ptr_ref && operand_equal_p (lhs, tci->vtbl_ptr_ref, 0))
1234 if (DECL_P (tci->instance))
1236 if (base != tci->instance)
1243 print_generic_expr (dump_file, tci->instance, TDF_SLIM);
1251 if (!operand_equal_p (tci->instance, TREE_OPERAND (base, 0), 0))
1258 print_generic_expr (dump_file, tci->instance, TDF_SLIM);
1272 print_generic_expr (dump_file, tci->instance, TDF_SLIM);
1281 else if (!operand_equal_p (tci
1341 record_known_type(struct type_change_info *tci, tree type, HOST_WIDE_INT offset) argument
1420 struct type_change_info *tci = (struct type_change_info *) data; local
1573 struct type_change_info tci; local
[all...]
H A Dipa-prop.cc719 struct prop_type_change_info *tci = (struct prop_type_change_info *) data; local
723 tci->type_maybe_changed = true;
798 struct prop_type_change_info tci; local
826 tci.offset = offset;
827 tci.object = get_base_address (arg);
828 tci.type_maybe_changed = false;
832 &tci, NULL, NULL, fbi->aa_walk_budget);
838 if (walked >= 0 && !tci.type_maybe_changed)
/netbsd-current/sys/net/agr/
H A Dif_agrether_hash.c78 uint16_t tci; local
100 tci = vlanhdr->evl_tag;
104 tci = htole16(vlan_get_tag(m));
106 tci = 0;
108 hash = HASH(&tci, sizeof(tci), hash);
/netbsd-current/external/bsd/wpa/dist/src/drivers/
H A Ddriver_macsec_qca.c916 u8 tci = 0; local
931 tci |= TCI_SC;
933 tci |= TCI_ES;
935 tci |= TCI_SCB;
938 tci |= TCI_E | TCI_C;
970 (tci >> 2));
/netbsd-current/external/bsd/tcpdump/dist/
H A Daddrtoname.c1326 ieee8021q_tci_string(const uint16_t tci) argument
1330 tci & 0xfff,
1331 tci >> 13,
1332 (tci & 0x1000) ? ", DEI" : "");
/netbsd-current/usr.bin/vmstat/
H A Dvmstat.c1203 struct cpu_info tci, *ci = NULL; local
1210 if ((size_t)kvm_read(kd, (u_long)ci, &tci, sizeof(tci))
1211 != sizeof(tci)) {
1217 cc->nintr += tci.ci_data.cpu_nintr;
1218 cc->nsyscall += tci.ci_data.cpu_nsyscall;
1219 cc->nswtch = tci.ci_data.cpu_nswtch;
1220 cc->nfault = tci.ci_data.cpu_nfault;
1221 cc->ntrap = tci.ci_data.cpu_ntrap;
1222 cc->nsoft = tci
[all...]

Completed in 286 milliseconds