Searched refs:cpus (Results 51 - 66 of 66) sorted by relevance

123

/freebsd-11-stable/sys/x86/x86/
H A Dmp_x86.c1151 * send an IPI to a set of cpus.
1154 ipi_selected(cpuset_t cpus, u_int ipi) argument
1164 CPU_OR_ATOMIC(&ipi_stop_nmi_pending, &cpus);
1166 while ((cpu = CPU_FFS(&cpus)) != 0) {
1168 CPU_CLR(cpu, &cpus);
1482 * Check for other cpus. Return if none.
H A Didentcpu.c190 } cpus[] = { variable in typeref:struct:__anon5
241 cpu_class = cpus[cpu].cpu_class;
242 strncpy(cpu_model, cpus[cpu].cpu_name, sizeof (cpu_model));
/freebsd-11-stable/usr.sbin/bhyvectl/
H A Dbhyvectl.c182 " [--get-active-cpus]\n"
183 " [--get-suspended-cpus]\n"
580 print_cpus(const char *banner, const cpuset_t *cpus) argument
586 if (!CPU_EMPTY(cpus)) {
588 if (CPU_ISSET(i, cpus)) {
1439 { "get-active-cpus", NO_ARG, &get_active_cpus, 1 },
1440 { "get-suspended-cpus", NO_ARG, &get_suspended_cpus, 1 },
1669 cpuset_t cpus; local
2238 error = vm_active_cpus(ctx, &cpus);
2240 print_cpus("active cpus",
[all...]
/freebsd-11-stable/sys/mips/mediatek/
H A Dmtk_intr_gic.c337 mtk_gic_ipi_send(device_t dev, struct intr_irqsrc *isrc, cpuset_t cpus) argument
/freebsd-11-stable/tools/tools/netmap/
H A Dpkt-gen.c267 int cpus; /* cpus used for running */ member in struct:glob_arg
268 int system_cpus; /* cpus on the system */
2394 " -c cpus\n"
2541 t->affinity = (g->affinity + i) % g->cpus;
2813 g.cpus = 1; /* default */
2953 g.cpus = atoi(optarg);
3015 if (g.cpus < 0 || g.cpus > i) {
3016 D("%d cpus i
[all...]
/freebsd-11-stable/sys/arm64/arm64/
H A Dgic_v3.c818 gic_v3_ipi_send(device_t dev, struct intr_irqsrc *isrc, cpuset_t cpus, argument
844 if (CPU_ISSET(i, &cpus)) {
/freebsd-11-stable/tools/tools/sysbuild/
H A Dsysbuild.sh75 ncpu=`sysctl -n kern.smp.cpus`
/freebsd-11-stable/sys/dev/cxgb/common/
H A Dcxgb_common.h740 void t3_config_rss(adapter_t *adapter, unsigned int rss_config, const u8 *cpus,
H A Dcxgb_t3_hw.c2947 * @cpus: values for the CPU lookup table (0xff terminated)
2950 * Programs the receive packet steering logic. @cpus and @rspq provide
2955 void t3_config_rss(adapter_t *adapter, unsigned int rss_config, const u8 *cpus, argument
2960 if (cpus)
2965 val |= (cpus[cpu_idx++] & 0x3f) << (8 * j);
2966 if (cpus[cpu_idx] == 0xff)
/freebsd-11-stable/sys/amd64/vmm/
H A Dvmm_dev.c618 error = copyout(cpuset, vm_cpuset->cpus, size);
/freebsd-11-stable/sys/dev/cxgb/
H A Dcxgb_main.c1406 uint8_t cpus[SGE_QSETS + 1]; local
1410 cpus[i] = i;
1411 cpus[SGE_QSETS] = 0xff;
1434 cpus, rspq_map);
/freebsd-11-stable/sys/net/
H A Diflib.c5191 cpuset_t cpus; local
5194 CPU_COPY(&ctx->ifc_cpus, &cpus);
5195 count = CPU_COUNT(&cpus);
5199 cpuid = CPU_FFS(&cpus);
5201 CPU_CLR(cpuid-1, &cpus);
5203 cpuid = CPU_FFS(&cpus);
5742 device_printf(dev, "pxm cpus: %d queue msgs: %d admincnt: %d\n",
/freebsd-11-stable/contrib/ntp/sntp/libevent/
H A Devent.c1118 event_config_set_num_cpus_hint(struct event_config *cfg, int cpus) argument
1122 cfg->n_cpus_hint = cpus;
/freebsd-11-stable/contrib/dtc/Documentation/
H A Ddtc-paper.tex329 cpus {
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenModule.cpp2982 for (const IdentifierInfo *II : DD->cpus()) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaDecl.cpp10228 for (const IdentifierInfo *CurII : CurCPUSpec->cpus()) {
10229 for (const IdentifierInfo *NewII : NewCPUSpec->cpus()) {

Completed in 252 milliseconds

123