Home
last modified time | relevance | path

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

/linux/arch/um/include/asm/
H A Dcpufeature.h12 extern const char * const x86_cap_flags[NCAPINTS*32];
133 #define MAX_CPU_FEATURES (NCAPINTS * 32)
H A Dprocessor-generic.h76 __u32 x86_capability[NCAPINTS + NBUGINTS];
/linux/arch/x86/include/asm/
H A Dcpufeature.h41 extern const char * const x86_cap_flags[NCAPINTS*32];
46 * X86_BUG_<name> - NCAPINTS*32.
133 #define MAX_CPU_FEATURES (NCAPINTS * 32)
H A Dprocessor.h167 __u32 x86_capability[NCAPINTS + NBUGINTS];
218 extern __u32 cpu_caps_cleared[NCAPINTS + NBUGINTS];
219 extern __u32 cpu_caps_set[NCAPINTS + NBUGINTS];
H A Dkvm_host.h802 CPUID_12_EAX = NCAPINTS,
814 NKVMCAPINTS = NR_KVM_CPU_CAPS - NCAPINTS,
/linux/arch/x86/boot/
H A Dcpu.c37 for (i = 0; i < NCAPINTS; i++) { in show_cap_strs()
/linux/arch/x86/kernel/cpu/
H A Dcommon.c754 __u32 cpu_caps_cleared[NCAPINTS + NBUGINTS] __aligned(sizeof(unsigned long));
755 __u32 cpu_caps_set[NCAPINTS + NBUGINTS] __aligned(sizeof(unsigned long));
972 for (i = 0; i < NCAPINTS + NBUGINTS; i++) { in apply_forced_caps()
1665 if (bit < NCAPINTS * 32) { in parse_set_clear_cpuid()
1689 for (bit = 0; bit < 32 * (NCAPINTS + NBUGINTS); bit++) { in parse_set_clear_cpuid()
1693 if (bit < 32 * NCAPINTS) { in parse_set_clear_cpuid()
1698 flag = x86_bug_flags[bit - (32 * NCAPINTS)]; in parse_set_clear_cpuid()
2105 for (i = 0; i < NCAPINTS; i++) in identify_cpu()
2109 for (i = NCAPINTS; i < NCAPINTS in identify_cpu()
[all...]
H A Dcpuid-deps.c115 #define MAX_FEATURE_BITS ((NCAPINTS + NBUGINTS) * sizeof(u32) * 8)
/linux/tools/arch/x86/include/asm/
H A Dcpufeatures.h8 #define NCAPINTS 22 /* N 32-bit words worth of info */ macro
522 #define X86_BUG(x) (NCAPINTS*32 + (x))
/linux/arch/x86/kvm/
H A Dcpuid.c717 if (leaf < NCAPINTS) \
/linux/arch/x86/kernel/
H A Dalternative.c614 BUG_ON(alt->cpuid >= (NCAPINTS + NBUGINTS) * 32); in analyze_patch_site()