Home
last modified time | relevance | path

Searched refs:CPUINDEX_DIVISOR (Results 1 – 1 of 1) sorted by relevance

/netbsd/src/sys/arch/arm/arm/
Dcpu_subr.c67 #define CPUINDEX_DIVISOR (sizeof(u_long) * NBBY) macro
69 volatile u_long arm_cpu_hatched[howmany(MAXCPUS, CPUINDEX_DIVISOR)] __cacheline_aligned = { 0 };
70 volatile u_long arm_cpu_mbox[howmany(MAXCPUS, CPUINDEX_DIVISOR)] __cacheline_aligned = { 0 };
96 const size_t off = cpuno / CPUINDEX_DIVISOR; in cpu_boot_secondary_processors()
97 const u_long bit = __BIT(cpuno % CPUINDEX_DIVISOR); in cpu_boot_secondary_processors()
113 const u_int off = cpuindex / CPUINDEX_DIVISOR; in cpu_hatched_p()
114 const u_int bit = cpuindex % CPUINDEX_DIVISOR; in cpu_hatched_p()
124 const size_t off = cpuindex / CPUINDEX_DIVISOR; in cpu_set_hatched()
125 const u_long bit = __BIT(cpuindex % CPUINDEX_DIVISOR); in cpu_set_hatched()
137 const size_t off = cpuindex / CPUINDEX_DIVISOR; in cpu_clr_mbox()
[all …]