| /f-stack/freebsd/mips/beri/ |
| H A D | beri_mp.c | 55 static phandle_t cpu_of_nodes[MAXCPU]; 56 static device_t picmap[MAXCPU]; 86 if (MAXCPU > 1 && ncpus > MAXCPU) in platform_cpu_mask() 88 __func__, ncpus, MAXCPU); in platform_cpu_mask() 107 if (reg > MAXCPU) { in platform_cpu_mask() 109 reg, MAXCPU); in platform_cpu_mask() 226 KASSERT(cpuid < MAXCPU, ("%s: invalid CPU id %d", __func__, cpuid)); in platform_init_ap() 265 KASSERT((cpuid > 0 && cpuid < MAXCPU), in platform_start_ap()
|
| /f-stack/freebsd/x86/include/ |
| H A D | x86_smp.h | 69 extern u_long *ipi_invltlb_counts[MAXCPU]; 70 extern u_long *ipi_invlrng_counts[MAXCPU]; 71 extern u_long *ipi_invlpg_counts[MAXCPU]; 72 extern u_long *ipi_invlcache_counts[MAXCPU]; 73 extern u_long *ipi_rendezvous_counts[MAXCPU];
|
| /f-stack/freebsd/arm/include/ |
| H A D | param.h | 69 #ifndef MAXCPU 70 #define MAXCPU 4 macro 73 #define MAXCPU 1 macro
|
| /f-stack/freebsd/arm64/include/ |
| H A D | param.h | 58 #ifndef MAXCPU 59 #define MAXCPU 256 macro 62 #define MAXCPU 1 macro
|
| /f-stack/freebsd/i386/include/ |
| H A D | param.h | 60 #ifndef MAXCPU 61 #define MAXCPU 32 macro 64 #define MAXCPU 1 macro
|
| /f-stack/freebsd/mips/include/ |
| H A D | param.h | 101 #ifndef MAXCPU 102 #define MAXCPU MAXSMPCPU macro 106 #define MAXCPU 1 macro
|
| H A D | pcpu.h | 71 extern char pcpu_space[MAXCPU][PAGE_SIZE * 2];
|
| /f-stack/freebsd/x86/x86/ |
| H A D | mp_x86.c | 97 void *bootstacks[MAXCPU]; 100 struct pcb stoppcbs[MAXCPU]; 107 u_long *ipi_invltlb_counts[MAXCPU]; 108 u_long *ipi_invlrng_counts[MAXCPU]; 109 u_long *ipi_invlpg_counts[MAXCPU]; 139 int cpu_apic_ids[MAXCPU]; 652 if (mp_ncpus >= MAXCPU) in assign_cpu_ids() 1131 for (i = 0; i < MAXCPU; i++) { in set_interrupt_apic_ids() 1150 u_int xhits_gbl[MAXCPU]; 1151 u_int xhits_pg[MAXCPU]; [all …]
|
| /f-stack/freebsd/amd64/include/ |
| H A D | param.h | 67 #ifndef MAXCPU 68 #define MAXCPU 256 macro 71 #define MAXCPU 1 macro
|
| /f-stack/tools/compat/include/sys/ |
| H A D | malloc.h | 93 #ifndef MAXCPU 94 #define MAXCPU 1 macro 101 struct malloc_type_stats mti_stats[MAXCPU];
|
| H A D | _cpuset.h | 39 #define CPU_SETSIZE MAXCPU
|
| /f-stack/freebsd/x86/xen/ |
| H A D | pvcpu_enum.c | 157 for (i = 0; i < MAXCPU && (i * 2) < MAX_APIC_ID; i++) { in xenpv_probe_cpus() 159 mp_ncpus = min(mp_ncpus + 1, MAXCPU); in xenpv_probe_cpus() 176 for (i = 0; i < MAXCPU && (i * 2) < MAX_APIC_ID; i++) { in xenpv_setup_local()
|
| /f-stack/freebsd/arm64/arm64/ |
| H A D | mp_machdep.c | 126 struct pcb stoppcbs[MAXCPU]; 140 static void *bootstacks[MAXCPU]; 149 void *dpcpu[MAXCPU - 1]; 217 if (cpu >= MAXCPU || __pcpu[cpu].pc_mpidr != mpidr) { in init_secondary() 221 if ( cpu >= MAXCPU) in init_secondary() 472 KASSERT(cpuid < MAXCPU, ("Too many CPUs")); in start_cpu() 725 cores = MIN(cores, MAXCPU); in cpu_mp_setmaxid() 738 cores = MIN(cores, MAXCPU); in cpu_mp_setmaxid()
|
| /f-stack/freebsd/mips/mips/ |
| H A D | mp_machdep.c | 58 struct pcb stoppcbs[MAXCPU]; 223 mp_maxid = min(last, MAXCPU) - 1; in cpu_mp_setmaxid() 260 if (cpuid >= MAXCPU) { in cpu_mp_start()
|
| /f-stack/freebsd/arm/arm/ |
| H A D | pmu.c | 61 uint32_t ccnt_hi[MAXCPU]; 137 for (i = 0; i < MAXCPU; i++) in pmu_attach()
|
| H A D | gic_acpi.c | 91 ACPI_MADT_GENERIC_INTERRUPT *intr[MAXCPU]; 114 if (intr->CpuInterfaceNumber < MAXCPU) in madt_handler() 158 for (i = 0; i < MAXCPU; i++) { in gic_acpi_identify()
|
| H A D | genassym.c | 123 ASSYM(MAXCPU, MAXCPU);
|
| H A D | mp_machdep.c | 67 struct pcb stoppcbs[MAXCPU]; 78 void *dpcpu[MAXCPU - 1];
|
| H A D | gic.h | 61 uint32_t last_irq[MAXCPU];
|
| /f-stack/freebsd/contrib/ncsw/user/env/ |
| H A D | xx.c | 115 vm_paddr_t portal_ce_pa[2][MAXCPU]; 116 vm_paddr_t portal_ci_pa[2][MAXCPU]; 117 uint32_t portal_ce_size[2][MAXCPU]; 118 uint32_t portal_ci_size[2][MAXCPU]; 121 uintptr_t portal_intr[2][MAXCPU]; 290 for (cpu = 0; cpu < MAXCPU; cpu++) in XX_IsPortalIntr()
|
| /f-stack/freebsd/sys/ |
| H A D | _cpuset.h | 40 #define CPU_SETSIZE MAXCPU
|
| /f-stack/freebsd/kern/ |
| H A D | subr_pcpu.c | 78 uintptr_t dpcpu_off[MAXCPU]; 79 struct pcpu *cpuid_to_pcpu[MAXCPU]; 90 KASSERT(cpuid >= 0 && cpuid < MAXCPU, in pcpu_init()
|
| /f-stack/lib/ |
| H A D | ff_kern_synch.c | 59 static uint8_t pause_wchan[MAXCPU];
|
| /f-stack/freebsd/mips/cavium/ |
| H A D | octeon_mp.c | 119 for (i = 0, m = 1 ; i < MAXCPU; i++, m <<= 1) in platform_cpu_mask()
|
| /f-stack/freebsd/mips/nlm/ |
| H A D | xlp_machdep.c | 112 int xlp_cpuid_to_hwtid[MAXCPU]; 113 int xlp_hwtid_to_cpuid[MAXCPU]; 245 for (i = 0; i< MAXCPU; i++) in xlp_parse_mmu_options()
|