HomeSort by relevance Sort by last modified time
    Searched refs:CpuFeatures (Results 1 - 25 of 80) sorted by null

1 2 3 4

  /cts/tests/tests/os/src/android/os/cts/
CpuInstructionsTest.java 20 import android.os.cts.CpuFeatures;
28 if (!CpuFeatures.isArm64Cpu()) {
37 if (!CpuFeatures.isArm64CpuIn32BitMode()) {
NoExecutePermissionTest.java 54 if (CpuFeatures.isArmCpu() && !CpuFeatures.isArm7Compatible()) {
59 if (CpuFeatures.isMipsCpu()) {
TaggedPointerTest.java 22 import android.os.cts.CpuFeatures;
33 if (!CpuFeatures.isArm64Cpu()) {
CpuFeaturesTest.java 28 import android.os.cts.CpuFeatures;
40 if (!CpuFeatures.isArm64CpuIn32BitMode()) {
44 int hwcaps = CpuFeatures.getHwCaps();
49 assertHwCap("VFP", hwcaps, CpuFeatures.HWCAP_VFP);
50 assertHwCap("NEON", hwcaps, CpuFeatures.HWCAP_NEON);
51 assertHwCap("VFPv3", hwcaps, CpuFeatures.HWCAP_VFPv3);
52 assertHwCap("VFPv4", hwcaps, CpuFeatures.HWCAP_VFPv4);
53 assertHwCap("IDIVA", hwcaps, CpuFeatures.HWCAP_IDIVA);
54 assertHwCap("IDIVT", hwcaps, CpuFeatures.HWCAP_IDIVT);
101 if (!CpuFeatures.isArmCpu()
    [all...]
CpuFeatures.java 21 public class CpuFeatures {
SeccompTest.java 58 return (CpuFeatures.isArmCpu() || CpuFeatures.isArm64Cpu()) &&
  /external/v8/src/ppc/
cpu-ppc.cc 15 void CpuFeatures::FlushICache(void* buffer, size_t size) {
17 if (CpuFeatures::IsSupported(INSTR_AND_DATA_CACHE_COHERENCY)) {
28 const int kCacheLineSize = CpuFeatures::cache_line_size();
  /external/v8/src/ia32/
cpu-ia32.cc 19 void CpuFeatures::FlushICache(void* start, size_t size) {
  /external/v8/src/x64/
cpu-x64.cc 19 void CpuFeatures::FlushICache(void* start, size_t size) {
macro-assembler-x64.cc 763 if (CpuFeatures::IsSupported(AVX)) {
773 if (CpuFeatures::IsSupported(AVX)) {
783 if (CpuFeatures::IsSupported(AVX)) {
793 if (CpuFeatures::IsSupported(AVX)) {
803 if (CpuFeatures::IsSupported(AVX)) {
815 if (CpuFeatures::IsSupported(AVX)) {
827 if (CpuFeatures::IsSupported(AVX)) {
839 if (CpuFeatures::IsSupported(AVX)) {
851 if (CpuFeatures::IsSupported(AVX)) {
863 if (CpuFeatures::IsSupported(AVX))
    [all...]
  /external/v8/src/x87/
cpu-x87.cc 19 void CpuFeatures::FlushICache(void* start, size_t size) {
  /external/v8/src/mips/
cpu-mips.cc 25 void CpuFeatures::FlushICache(void* start, size_t size) {
  /external/v8/src/arm/
cpu-arm.cc 23 void CpuFeatures::FlushICache(void* start, size_t size) {
assembler-arm-inl.h 50 bool CpuFeatures::SupportsCrankshaft() { return IsSupported(VFP3); }
54 return CpuFeatures::IsSupported(VFP32DREGS) ? 32 : 16;
425 if (CpuFeatures::IsSupported(ARMv7)) {
448 if (CpuFeatures::IsSupported(ARMv7)) {
492 if (CpuFeatures::IsSupported(ARMv7)) {
511 if (!CpuFeatures::IsSupported(ARMv7) && IsMovImmed(Memory::int32_at(pc))) {
549 } else if (CpuFeatures::IsSupported(ARMv7)) {
590 } else if (CpuFeatures::IsSupported(ARMv7)) {
assembler-arm.cc 83 void CpuFeatures::ProbeImpl(bool cross_compile) {
156 void CpuFeatures::PrintTarget() {
210 void CpuFeatures::PrintFeatures() {
214 CpuFeatures::IsSupported(ARMv8),
215 CpuFeatures::IsSupported(ARMv7),
216 CpuFeatures::IsSupported(VFP3),
217 CpuFeatures::IsSupported(VFP32DREGS),
218 CpuFeatures::IsSupported(NEON),
219 CpuFeatures::IsSupported(SUDIV),
220 CpuFeatures::IsSupported(MLS)
    [all...]
codegen-arm.cc 87 if (!CpuFeatures::IsSupported(UNALIGNED_ACCESSES)) return stub;
102 if (CpuFeatures::IsSupported(NEON)) {
111 if (CpuFeatures::cache_line_size() == 32) {
117 if (CpuFeatures::cache_line_size() == 32) {
123 if (CpuFeatures::cache_line_size() == 32) {
127 if (CpuFeatures::cache_line_size() == 32) {
137 if (CpuFeatures::cache_line_size() == 32) {
245 if (!CpuFeatures::IsSupported(UNALIGNED_ACCESSES)) return stub;
257 if (CpuFeatures::IsSupported(NEON)) {
    [all...]
  /external/v8/src/mips64/
cpu-mips64.cc 25 void CpuFeatures::FlushICache(void* start, size_t size) {
  /libcore/support/src/test/java/libcore/java/security/
CpuFeatures.java 29 public class CpuFeatures {
30 private CpuFeatures() {
  /external/v8/src/arm64/
cpu-arm64.cc 41 void CpuFeatures::FlushICache(void* address, size_t length) {
  /external/v8/src/
v8.cc 81 CpuFeatures::Probe(false);
register-configuration.cc 72 CpuFeatures::IsSupported(VFP32DREGS)
flags.cc 522 CpuFeatures::Probe(false);
523 CpuFeatures::PrintTarget();
524 CpuFeatures::PrintFeatures();
  /external/v8/test/cctest/
test-assembler-ppc.cc 273 if (CpuFeatures::IsSupported(VFP3)) {
274 CpuFeatures::Scope scope(VFP3);
388 if (CpuFeatures::IsSupported(ARMv7)) {
389 CpuFeatures::Scope scope(ARMv7);
425 if (CpuFeatures::IsSupported(ARMv7)) {
426 CpuFeatures::Scope scope(ARMv7);
468 if (CpuFeatures::IsSupported(VFP3)) {
469 CpuFeatures::Scope scope(VFP3);
673 if (CpuFeatures::IsSupported(VFP2)) {
674 CpuFeatures::Scope scope(VFP2)
    [all...]
test-disasm-arm.cc 270 if (CpuFeatures::IsSupported(ARMv7)) {
364 if (CpuFeatures::IsSupported(ARMv7)) {
456 if (CpuFeatures::IsSupported(VFP3)) {
673 if (CpuFeatures::IsSupported(VFP32DREGS)) {
761 if (CpuFeatures::IsSupported(ARMv8)) {
785 if (CpuFeatures::IsSupported(NEON)) {
    [all...]
  /external/v8/src/snapshot/
mksnapshot.cc 154 i::CpuFeatures::Probe(true);

Completed in 326 milliseconds

1 2 3 4