Searched defs:CpuFeatures (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/base/android/java/src/org/chromium/base/
H A DCpuFeatures.java21 public abstract class CpuFeatures { class
/external/chromium_org/v8/src/mips/
H A Dassembler-mips.h396 // CpuFeatures keeps track of which features are supported by the target CPU.
398 class CpuFeatures : public AllStatic { class in namespace:v8::internal
429 DISALLOW_COPY_AND_ASSIGN(CpuFeatures);
/external/v8/src/mips/
H A Dassembler-mips.h405 // CpuFeatures keeps track of which features are supported by the target CPU.
407 class CpuFeatures : public AllStatic { class in namespace:v8::internal
443 ASSERT(CpuFeatures::IsSupported(f));
445 (CpuFeatures::found_by_runtime_probing_ & mask) == 0);
473 : old_supported_(CpuFeatures::supported_) {
475 CpuFeatures::supported_ |= (1u << f);
481 CpuFeatures::supported_ = old_supported_;
503 DISALLOW_COPY_AND_ASSIGN(CpuFeatures);
/external/chromium_org/v8/src/arm/
H A Dassembler-arm.h50 // CpuFeatures keeps track of which features are supported by the target CPU.
52 class CpuFeatures : public AllStatic { class in namespace:v8::internal
92 DISALLOW_COPY_AND_ASSIGN(CpuFeatures);
1278 return CpuFeatures::IsSupported(MOVW_MOVT_IMMEDIATE_LOADS) &&
/external/v8/src/arm/
H A Dassembler-arm.h501 // CpuFeatures keeps track of which features are supported by the target CPU.
503 class CpuFeatures : public AllStatic { class in namespace:v8::internal
538 ASSERT(CpuFeatures::IsSupported(f));
540 (CpuFeatures::found_by_runtime_probing_ & mask) == 0);
568 : old_supported_(CpuFeatures::supported_) {
570 CpuFeatures::supported_ |= (1u << f);
576 CpuFeatures::supported_ = old_supported_;
598 DISALLOW_COPY_AND_ASSIGN(CpuFeatures);

Completed in 275 milliseconds