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

  /external/v8/src/base/
cpu.cc 425 // Try to extract the list of CPU features from ELF hwcaps.
426 uint32_t hwcaps = ReadELFHWCaps(); local
427 if (hwcaps != 0) {
428 has_idiva_ = (hwcaps & HWCAP_IDIVA) != 0;
429 has_neon_ = (hwcaps & HWCAP_NEON) != 0;
430 has_vfp_ = (hwcaps & HWCAP_VFP) != 0;
431 has_vfp3_ = (hwcaps & (HWCAP_VFPv3 | HWCAP_VFPv3D16 | HWCAP_VFPv4)) != 0;
432 has_vfp3_d32_ = (has_vfp3_ && ((hwcaps & HWCAP_VFPv3D16) == 0 ||
433 (hwcaps & HWCAP_VFPD32) != 0));
  /cts/tests/tests/os/src/android/os/cts/
CpuFeaturesTest.java 34 private static void assertHwCap(String name, int hwcaps, int flag) {
36 hwcaps & flag);
44 int hwcaps = CpuFeatures.getHwCaps(); local
47 hwcaps == 0);
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)
    [all...]
  /art/runtime/arch/arm/
instruction_set_features_arm.cc 170 uint64_t hwcaps = getauxval(AT_HWCAP); local
171 LOG(INFO) << "hwcaps=" << hwcaps;
172 if ((hwcaps & HWCAP_IDIVT) != 0) {
175 CHECK_NE(hwcaps & HWCAP_IDIVA, 0U);
178 if ((hwcaps & HWCAP_LPAE) != 0) {
  /external/valgrind/VEX/priv/
host_tilegx_isel.c 106 UInt hwcaps; member in struct:__anon19887
    [all...]
host_arm64_isel.c 102 UInt hwcaps; member in struct:__anon19514
    [all...]
host_arm_isel.c 118 UInt hwcaps; member in struct:__anon19609
    [all...]
host_mips_isel.c 120 UInt hwcaps; member in struct:__anon19679
    [all...]
host_s390_isel.c 112 UInt hwcaps; member in struct:__anon19843
    [all...]
host_x86_isel.c 181 UInt hwcaps; member in struct:__anon19961
    [all...]
host_amd64_isel.c 156 UInt hwcaps; member in struct:__anon19419
    [all...]
host_ppc_isel.c 284 UInt hwcaps; member in struct:__anon19777
    [all...]
host_x86_defs.h 520 host's hwcaps so the assembler knows what to emit. */
522 UInt hwcaps; member in struct:__anon19916::__anon19917::__anon19937
684 extern X86Instr* X86Instr_MFence ( UInt hwcaps );
guest_ppc_toIR.c 18881 UInt hwcaps = archinfo->hwcaps; local
    [all...]
  /external/google-breakpad/src/client/linux/minidump_writer/
minidump_writer.cc 917 uint32_t hwcaps; member in struct:__anon9399::MinidumpWriter::CpuFeaturesEntry
    [all...]
  /external/skia/platform_tools/android/third_party/cpufeatures/
cpu-features.c 521 // On success, return new ELF hwcaps, or 0 on failure.
559 uint32_t hwcaps = 0; local
571 D("Faking 32-bit ARM HWCaps on ARMv%ld CPU\n", architecture);
581 hwcaps |= HWCAP_VFP;
583 hwcaps |= HWCAP_VFPv3;
585 hwcaps |= HWCAP_VFPv3D16;
587 hwcaps |= HWCAP_VFPv4;
589 hwcaps |= HWCAP_NEON;
591 hwcaps |= HWCAP_IDIVA;
593 hwcaps |= HWCAP_IDIVT
769 uint32_t hwcaps = 0; local
957 uint32_t hwcaps = 0; local
    [all...]
  /ndk/sources/android/cpufeatures/
cpu-features.c 530 // On success, return new ELF hwcaps, or 0 on failure.
568 uint32_t hwcaps = 0; local
580 D("Faking 32-bit ARM HWCaps on ARMv%ld CPU\n", architecture);
590 hwcaps |= HWCAP_VFP;
592 hwcaps |= HWCAP_VFPv3;
594 hwcaps |= HWCAP_VFPv3D16;
596 hwcaps |= HWCAP_VFPv4;
598 hwcaps |= HWCAP_NEON;
600 hwcaps |= HWCAP_IDIVA;
602 hwcaps |= HWCAP_IDIVT
760 uint32_t hwcaps = 0; local
944 uint32_t hwcaps = 0; local
1007 uint32_t hwcaps = 0; local
    [all...]
  /external/valgrind/VEX/pub/
libvex.h 160 /* Special value representing all available s390x hwcaps */
188 /* Get an ARM architecure level from HWCAPS */
221 /* Get MIPS Company ID from HWCAPS */
223 /* Get MIPS Processor ID from HWCAPS */
225 /* Get MIPS Revision from HWCAPS */
290 UInt hwcaps; member in struct:__anon20013
    [all...]

Completed in 361 milliseconds