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

  /src/sys/net/agr/
if_agrether_hash.c 78 uint16_t tci; local in function:agrether_hashmbuf
100 tci = vlanhdr->evl_tag;
104 tci = htole16(vlan_get_tag(m));
106 tci = 0;
108 hash = HASH(&tci, sizeof(tci), hash);
  /src/sys/kern/
sys_pset.c 390 struct cpu_info *tci; local in function:sys_pset_assign
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 in function:sched_takecpu
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))
818 struct cpu_info *ci, *inner, *outer, *first, *tci, *mci; local in function:sched_idle
910 struct cpu_info *ci, *tci; local in function:sched_preempted
1187 struct cpu_info *ci, *tci; local in function:sched_print_runqueue
    [all...]
  /src/usr.bin/vmstat/
vmstat.c 1203 struct cpu_info tci, *ci = NULL; local in function:cpucounters
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.ci_data.cpu_nsoft
    [all...]

Completed in 14 milliseconds