• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/arch/x86/include/asm/

Lines Matching refs:boot_cpu_has

213 #define boot_cpu_has(bit)	cpu_has(&boot_cpu_data, bit)
226 #define cpu_has_fpu boot_cpu_has(X86_FEATURE_FPU)
227 #define cpu_has_vme boot_cpu_has(X86_FEATURE_VME)
228 #define cpu_has_de boot_cpu_has(X86_FEATURE_DE)
229 #define cpu_has_pse boot_cpu_has(X86_FEATURE_PSE)
230 #define cpu_has_tsc boot_cpu_has(X86_FEATURE_TSC)
231 #define cpu_has_pae boot_cpu_has(X86_FEATURE_PAE)
232 #define cpu_has_pge boot_cpu_has(X86_FEATURE_PGE)
233 #define cpu_has_apic boot_cpu_has(X86_FEATURE_APIC)
234 #define cpu_has_sep boot_cpu_has(X86_FEATURE_SEP)
235 #define cpu_has_mtrr boot_cpu_has(X86_FEATURE_MTRR)
236 #define cpu_has_mmx boot_cpu_has(X86_FEATURE_MMX)
237 #define cpu_has_fxsr boot_cpu_has(X86_FEATURE_FXSR)
238 #define cpu_has_xmm boot_cpu_has(X86_FEATURE_XMM)
239 #define cpu_has_xmm2 boot_cpu_has(X86_FEATURE_XMM2)
240 #define cpu_has_xmm3 boot_cpu_has(X86_FEATURE_XMM3)
241 #define cpu_has_aes boot_cpu_has(X86_FEATURE_AES)
242 #define cpu_has_ht boot_cpu_has(X86_FEATURE_HT)
243 #define cpu_has_mp boot_cpu_has(X86_FEATURE_MP)
244 #define cpu_has_nx boot_cpu_has(X86_FEATURE_NX)
245 #define cpu_has_k6_mtrr boot_cpu_has(X86_FEATURE_K6_MTRR)
246 #define cpu_has_cyrix_arr boot_cpu_has(X86_FEATURE_CYRIX_ARR)
247 #define cpu_has_centaur_mcr boot_cpu_has(X86_FEATURE_CENTAUR_MCR)
248 #define cpu_has_xstore boot_cpu_has(X86_FEATURE_XSTORE)
249 #define cpu_has_xstore_enabled boot_cpu_has(X86_FEATURE_XSTORE_EN)
250 #define cpu_has_xcrypt boot_cpu_has(X86_FEATURE_XCRYPT)
251 #define cpu_has_xcrypt_enabled boot_cpu_has(X86_FEATURE_XCRYPT_EN)
252 #define cpu_has_ace2 boot_cpu_has(X86_FEATURE_ACE2)
253 #define cpu_has_ace2_enabled boot_cpu_has(X86_FEATURE_ACE2_EN)
254 #define cpu_has_phe boot_cpu_has(X86_FEATURE_PHE)
255 #define cpu_has_phe_enabled boot_cpu_has(X86_FEATURE_PHE_EN)
256 #define cpu_has_pmm boot_cpu_has(X86_FEATURE_PMM)
257 #define cpu_has_pmm_enabled boot_cpu_has(X86_FEATURE_PMM_EN)
258 #define cpu_has_ds boot_cpu_has(X86_FEATURE_DS)
259 #define cpu_has_pebs boot_cpu_has(X86_FEATURE_PEBS)
260 #define cpu_has_clflush boot_cpu_has(X86_FEATURE_CLFLSH)
261 #define cpu_has_bts boot_cpu_has(X86_FEATURE_BTS)
262 #define cpu_has_gbpages boot_cpu_has(X86_FEATURE_GBPAGES)
263 #define cpu_has_arch_perfmon boot_cpu_has(X86_FEATURE_ARCH_PERFMON)
264 #define cpu_has_pat boot_cpu_has(X86_FEATURE_PAT)
265 #define cpu_has_xmm4_1 boot_cpu_has(X86_FEATURE_XMM4_1)
266 #define cpu_has_xmm4_2 boot_cpu_has(X86_FEATURE_XMM4_2)
267 #define cpu_has_x2apic boot_cpu_has(X86_FEATURE_X2APIC)
268 #define cpu_has_xsave boot_cpu_has(X86_FEATURE_XSAVE)
269 #define cpu_has_hypervisor boot_cpu_has(X86_FEATURE_HYPERVISOR)
270 #define cpu_has_pclmulqdq boot_cpu_has(X86_FEATURE_PCLMULQDQ)
302 * Static testing of CPU features. Used the same as boot_cpu_has().
352 __builtin_constant_p(boot_cpu_has(bit)) ? \
353 boot_cpu_has(bit) : \
356 boot_cpu_has(bit) \
362 #define static_cpu_has(bit) boot_cpu_has(bit)