HomeSort by relevance Sort by last modified time
    Searched defs:CpuFeatures (Results 1 - 5 of 5) sorted by null

  /cts/tests/src/android/os/cts/
CpuFeatures.java 19 public class CpuFeatures {
  /external/v8/src/ia32/
assembler-ia32.h 354 // CpuFeatures keeps track of which features are supported by the target CPU.
357 // if (CpuFeatures::IsSupported(SSE2)) {
358 // CpuFeatures::Scope fscope(SSE2);
363 class CpuFeatures : public AllStatic {
386 ASSERT(CpuFeatures::IsSupported(f));
388 old_enabled_ = CpuFeatures::enabled_;
389 CpuFeatures::enabled_ |= mask;
391 ~Scope() { CpuFeatures::enabled_ = old_enabled_; }
  /external/v8/src/arm/
assembler-arm.h 462 // CpuFeatures keeps track of which features are supported by the target CPU.
464 class CpuFeatures : public AllStatic {
486 ASSERT(CpuFeatures::IsSupported(f));
489 old_enabled_ = CpuFeatures::enabled_;
490 CpuFeatures::enabled_ |= 1u << f;
492 ~Scope() { CpuFeatures::enabled_ = old_enabled_; }
    [all...]
assembler-thumb2.h 462 // CpuFeatures keeps track of which features are supported by the target CPU.
464 class CpuFeatures : public AllStatic {
486 ASSERT(CpuFeatures::IsSupported(f));
489 old_enabled_ = CpuFeatures::enabled_;
490 CpuFeatures::enabled_ |= 1u << f;
492 ~Scope() { CpuFeatures::enabled_ = old_enabled_; }
    [all...]
  /external/v8/src/x64/
assembler-x64.h 327 // CpuFeatures keeps track of which features are supported by the target CPU.
330 // if (CpuFeatures::IsSupported(SSE3)) {
331 // CpuFeatures::Scope fscope(SSE3);
336 class CpuFeatures : public AllStatic {
360 ASSERT(CpuFeatures::IsSupported(f));
362 old_enabled_ = CpuFeatures::enabled_;
363 CpuFeatures::enabled_ |= mask;
365 ~Scope() { CpuFeatures::enabled_ = old_enabled_; }
    [all...]

Completed in 71 milliseconds