Home
last modified time | relevance | path

Searched refs:has_neon (Results 1 – 6 of 6) sorted by relevance

/external/libyuv/files/unit_test/
Dcpu_test.cc26 int has_neon = TestCpuFlag(kCpuHasNEON); in TEST_F() local
27 printf("Has NEON %x\n", has_neon); in TEST_F()
/external/v8/src/base/
Dcpu.h74 bool has_neon() const { return has_neon_; } in has_neon() function
/external/valgrind/coregrind/m_initimg/
Dinitimg-linux.c686 { Bool has_neon = (auxv->u.a_val & VKI_HWCAP_NEON) > 0; in setup_client_stack() local
689 has_neon ? "YES" : "NO"); in setup_client_stack()
690 VG_(machine_arm_set_has_NEON)( has_neon ); in setup_client_stack()
/external/skia/platform_tools/android/third_party/cpufeatures/
Dcpu-features.c790 int has_neon = (hwcaps & HWCAP_NEON); in android_cpuInit() local
822 if (has_neon) { in android_cpuInit()
/external/valgrind/coregrind/
Dm_machine.c1735 void VG_(machine_arm_set_has_NEON)( Bool has_neon ) in VG_()
1740 if (has_neon) { in VG_()
/external/v8/src/arm/
Dassembler-arm.cc106 if (FLAG_enable_neon && cpu.has_neon()) supported_ |= 1u << NEON; in ProbeImpl()