Symbol: NCAPINTS
arch/um/include/asm/cpufeature.h
12
extern const char * const x86_cap_flags[NCAPINTS*32];
arch/um/include/asm/cpufeature.h
133
#define MAX_CPU_FEATURES (NCAPINTS * 32)
arch/um/include/asm/processor-generic.h
76
__u32 x86_capability[NCAPINTS + NBUGINTS];
arch/um/kernel/um_arch.c
270
for (i = 0; i < 32*NCAPINTS; i++) {
arch/um/kernel/um_arch.c
88
for (i = 0; i < 32*NCAPINTS; i++)
arch/x86/boot/cpu.c
37
for (i = 0; i < NCAPINTS; i++) {
arch/x86/boot/cpucheck.c
33
static u32 err_flags[NCAPINTS];
arch/x86/boot/cpucheck.c
37
static const u32 req_flags[NCAPINTS] =
arch/x86/boot/cpucheck.c
95
for (i = 0; i < NCAPINTS; i++) {
arch/x86/boot/cpuflags.h
12
u32 flags[NCAPINTS];
arch/x86/boot/mkcpustr.c
27
for (i = 0; i < NCAPINTS; i++) {
arch/x86/boot/mkcpustr.c
31
if (i == NCAPINTS-1 && j == 31) {
arch/x86/include/asm/cpufeature.h
134
#define MAX_CPU_FEATURES (NCAPINTS * 32)
arch/x86/include/asm/cpufeature.h
41
extern const char * const x86_cap_flags[NCAPINTS*32];
arch/x86/include/asm/cpufeatures.h
522
#define X86_BUG(x) (NCAPINTS*32 + (x))
arch/x86/include/asm/kvm_host.h
781
CPUID_12_EAX = NCAPINTS,
arch/x86/include/asm/kvm_host.h
793
NKVMCAPINTS = NR_KVM_CPU_CAPS - NCAPINTS,
arch/x86/include/asm/processor.h
162
__u32 x86_capability[NCAPINTS + NBUGINTS];
arch/x86/include/asm/processor.h
212
extern __u32 cpu_caps_cleared[NCAPINTS + NBUGINTS];
arch/x86/include/asm/processor.h
213
extern __u32 cpu_caps_set[NCAPINTS + NBUGINTS];
arch/x86/kernel/alternative.c
614
BUG_ON(alt->cpuid >= (NCAPINTS + NBUGINTS) * 32);
arch/x86/kernel/cpu/common.c
1662
if (bit < NCAPINTS * 32) {
arch/x86/kernel/cpu/common.c
1686
for (bit = 0; bit < 32 * (NCAPINTS + NBUGINTS); bit++) {
arch/x86/kernel/cpu/common.c
1690
if (bit < 32 * NCAPINTS) {
arch/x86/kernel/cpu/common.c
1695
flag = x86_bug_flags[bit - (32 * NCAPINTS)];
arch/x86/kernel/cpu/common.c
2107
for (i = 0; i < NCAPINTS; i++)
arch/x86/kernel/cpu/common.c
2111
for (i = NCAPINTS; i < NCAPINTS + NBUGINTS; i++)
arch/x86/kernel/cpu/common.c
751
__u32 cpu_caps_cleared[NCAPINTS + NBUGINTS] __aligned(sizeof(unsigned long));
arch/x86/kernel/cpu/common.c
752
__u32 cpu_caps_set[NCAPINTS + NBUGINTS] __aligned(sizeof(unsigned long));
arch/x86/kernel/cpu/common.c
969
for (i = 0; i < NCAPINTS + NBUGINTS; i++) {
arch/x86/kernel/cpu/cpuid-deps.c
114
#define MAX_FEATURE_BITS ((NCAPINTS + NBUGINTS) * sizeof(u32) * 8)
arch/x86/kernel/cpu/proc.c
105
for (i = 0; i < 32*NCAPINTS; i++)
arch/x86/kernel/cpu/proc.c
122
unsigned int bug_bit = 32*NCAPINTS + i;
arch/x86/kvm/cpuid.c
717
if (leaf < NCAPINTS) \
arch/x86/kvm/reverse_cpuid.h
124
BUILD_BUG_ON(NR_CPUID_WORDS != NCAPINTS);
tools/arch/x86/include/asm/cpufeatures.h
522
#define X86_BUG(x) (NCAPINTS*32 + (x))