HomeSort by: relevance | last modified time | path
    Searched defs:tci (Results 1 - 10 of 10) sorted by relevancy

  /src/sys/net/agr/
if_agrether_hash.c 78 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);
  /src/external/bsd/nsd/dist/
xdp-dns-redirect_kern.c 27 __u16 tci; member in struct:vlanhdr
  /src/sys/kern/
sys_pset.c 390 struct cpu_info *tci; local
396 tci = sched_takecpu(t);
397 KASSERT(tci != ci);
398 lwp_migrate(t, tci);
kern_runq.c 570 struct cpu_info *ci, *curci, *tci; local
610 tci = ci;
612 if (cpu_is_type(tci, flags) && sched_migratable(l, tci)) {
613 return tci;
615 tci = tci->ci_sibling[CPUREL_CORE];
616 } while (tci != ci);
632 tci = curci;
634 if (cpu_is_type(tci, flags) && sched_migratable(l, tci))
716 struct cpu_info *ci = curcpu(), *tci = NULL; local
818 struct cpu_info *ci, *inner, *outer, *first, *tci, *mci; local
910 struct cpu_info *ci, *tci; local
1187 struct cpu_info *ci, *tci; local
    [all...]
  /src/external/bsd/wpa/dist/src/drivers/
driver_macsec_qca.c 47 /* TCI field definition */
938 u8 tci = 0; local
953 tci |= TCI_SC;
955 tci |= TCI_ES;
957 tci |= TCI_SCB;
960 tci |= TCI_E | TCI_C;
992 (tci >> 2));
  /src/external/gpl3/gcc/dist/gcc/
ipa-polymorphic-call.cc 1208 extr_type_from_vtbl_ptr_store (gimple *stmt, struct type_change_info *tci,
1228 if (tci->vtbl_ptr_ref && operand_equal_p (lhs, tci->vtbl_ptr_ref, 0))
1233 if (DECL_P (tci->instance))
1235 if (base != tci->instance)
1242 print_generic_expr (dump_file, tci->instance, TDF_SLIM);
1250 if (!operand_equal_p (tci->instance, TREE_OPERAND (base, 0), 0))
1257 print_generic_expr (dump_file, tci->instance, TDF_SLIM);
1271 print_generic_expr (dump_file, tci->instance, TDF_SLIM);
1280 else if (!operand_equal_p (tci->instance, base, 0
1419 struct type_change_info *tci = (struct type_change_info *) data; local
1572 struct type_change_info tci; local
    [all...]
ipa-prop.cc 822 struct prop_type_change_info *tci = (struct prop_type_change_info *) data; local
826 tci->type_maybe_changed = true;
901 struct prop_type_change_info tci; local
929 tci.offset = offset;
930 tci.object = get_base_address (arg);
931 tci.type_maybe_changed = false;
935 &tci, NULL, NULL, fbi->aa_walk_budget);
941 if (walked >= 0 && !tci.type_maybe_changed)
  /src/external/gpl3/gcc.old/dist/gcc/
ipa-polymorphic-call.cc 1209 extr_type_from_vtbl_ptr_store (gimple *stmt, struct type_change_info *tci,
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->instance, base, 0
1420 struct type_change_info *tci = (struct type_change_info *) data; local
1573 struct type_change_info tci; local
    [all...]
ipa-prop.cc 719 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)
  /src/usr.bin/vmstat/
vmstat.c 1201 struct cpu_info tci, *ci = NULL; local
1208 if ((size_t)kvm_read(kd, (u_long)ci, &tci, sizeof(tci))
1209 != sizeof(tci)) {
1215 cc->nintr += tci.ci_data.cpu_nintr;
1216 cc->nsyscall += tci.ci_data.cpu_nsyscall;
1217 cc->nswtch = tci.ci_data.cpu_nswtch;
1218 cc->nfault = tci.ci_data.cpu_nfault;
1219 cc->ntrap = tci.ci_data.cpu_ntrap;
1220 cc->nsoft = tci.ci_data.cpu_nsoft
    [all...]

Completed in 28 milliseconds