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

  /external/elfutils/backends/
sparc_attrs.c 49 static const char *hwcaps[30] = local
57 if (value < 30 && hwcaps[value] != NULL)
58 *value_name = hwcaps[value];
  /external/skia/src/core/
SkCpu.cpp 84 uint32_t hwcaps = getauxval(AT_HWCAP); local
85 if (hwcaps & kHWCAP_CRC32) { features |= SkCpu::CRC32; }
100 uint32_t hwcaps = getauxval(AT_HWCAP); local
101 if (hwcaps & kHWCAP_NEON ) {
103 if (hwcaps & kHWCAP_VFPv4) { features |= SkCpu::NEON_FMA|SkCpu::VFP_FP16; }
  /external/skqp/src/core/
SkCpu.cpp 84 uint32_t hwcaps = getauxval(AT_HWCAP); local
85 if (hwcaps & kHWCAP_CRC32) { features |= SkCpu::CRC32; }
100 uint32_t hwcaps = getauxval(AT_HWCAP); local
101 if (hwcaps & kHWCAP_NEON ) {
103 if (hwcaps & kHWCAP_VFPv4) { features |= SkCpu::NEON_FMA|SkCpu::VFP_FP16; }
  /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...]
  /external/v8/src/base/
cpu.cc 513 // Try to extract the list of CPU features from ELF hwcaps.
514 uint32_t hwcaps = ReadELFHWCaps(); local
515 if (hwcaps != 0) {
516 has_idiva_ = (hwcaps & HWCAP_IDIVA) != 0;
517 has_neon_ = (hwcaps & HWCAP_NEON) != 0;
518 has_vfp_ = (hwcaps & HWCAP_VFP) != 0;
519 has_vfp3_ = (hwcaps & (HWCAP_VFPv3 | HWCAP_VFPv3D16 | HWCAP_VFPv4)) != 0;
520 has_vfp3_d32_ = (has_vfp3_ && ((hwcaps & HWCAP_VFPv3D16) == 0 ||
521 (hwcaps & HWCAP_VFPD32) != 0));
  /art/runtime/arch/arm/
instruction_set_features_arm.cc 194 uint64_t hwcaps = getauxval(AT_HWCAP); local
195 LOG(INFO) << "hwcaps=" << hwcaps;
196 if ((hwcaps & HWCAP_IDIVT) != 0) {
199 CHECK_NE(hwcaps & HWCAP_IDIVA, 0U);
202 if ((hwcaps & HWCAP_LPAE) != 0) {
208 if ((hwcaps & HWCAP2_CRC32) != 0 && (hwcaps & HWCAP2_SHA1) != 0) {
  /external/valgrind/coregrind/m_initimg/
initimg-solaris.c 660 UInt hwcaps; local
667 /* Set default hwcaps. */
668 hwcaps =
678 /* Handle additional hwcaps. */
679 if (vex_archinfo.hwcaps & VEX_HWCAPS_X86_SSE1)
680 hwcaps |=
683 if (vex_archinfo.hwcaps & VEX_HWCAPS_X86_SSE2) {
684 vg_assert(vex_archinfo.hwcaps & VEX_HWCAPS_X86_SSE1);
685 hwcaps |=
688 if (vex_archinfo.hwcaps & VEX_HWCAPS_X86_SSE3)
    [all...]
  /toolchain/binutils/binutils-2.27/include/opcode/
sparc.h 111 unsigned int hwcaps; member in struct:sparc_opcode
  /external/google-breakpad/src/client/linux/minidump_writer/
minidump_writer.cc 925 uint32_t hwcaps; member in struct:__anon20744::MinidumpWriter::CpuFeaturesEntry
    [all...]
  /prebuilts/ndk/r16/sources/android/cpufeatures/
cpu-features.c 548 // On success, return new ELF hwcaps, or 0 on failure.
586 uint32_t hwcaps = 0; local
598 D("Faking 32-bit ARM HWCaps on ARMv%ld CPU\n", architecture);
608 hwcaps |= HWCAP_VFP;
610 hwcaps |= HWCAP_VFPv3;
612 hwcaps |= HWCAP_VFPv3D16;
614 hwcaps |= HWCAP_VFPv4;
616 hwcaps |= HWCAP_NEON;
618 hwcaps |= HWCAP_IDIVA;
620 hwcaps |= HWCAP_IDIVT
778 uint32_t hwcaps = 0; local
962 uint32_t hwcaps = 0; local
1050 uint32_t hwcaps = 0; local
    [all...]
  /external/valgrind/VEX/priv/
host_arm64_isel.c 102 UInt hwcaps; member in struct:__anon41586
    [all...]
host_arm_isel.c 118 UInt hwcaps; member in struct:__anon41684
    [all...]
host_mips_isel.c 117 UInt hwcaps; member in struct:__anon41754
    [all...]
host_s390_isel.c 112 UInt hwcaps; member in struct:__anon41922
    [all...]
host_x86_isel.c 181 UInt hwcaps; member in struct:__anon41996
    [all...]
host_amd64_isel.c 156 UInt hwcaps; member in struct:__anon41489
    [all...]
host_x86_defs.h 520 host's hwcaps so the assembler knows what to emit. */
522 UInt hwcaps; member in struct:__anon41951::__anon41952::__anon41972
684 extern X86Instr* X86Instr_MFence ( UInt hwcaps );
host_ppc_isel.c 284 UInt hwcaps; member in struct:__anon41856
    [all...]
guest_ppc_toIR.c 27753 UInt hwcaps = archinfo->hwcaps; local
    [all...]
  /external/valgrind/VEX/pub/
libvex.h 162 /* Special value representing all available s390x hwcaps */
187 /* Get an ARM architecure level from HWCAPS */
238 /* Get MIPS Company ID from HWCAPS */
240 /* Get MIPS Processor ID from HWCAPS */
242 /* Get MIPS Revision from HWCAPS */
312 UInt hwcaps; member in struct:__anon42043
    [all...]
  /toolchain/binutils/binutils-2.27/bfd/
elfxx-sparc.c 4835 obj_attribute *hwcaps = &attrs[Tag_GNU_Sparc_HWCAPS]; local
    [all...]
  /toolchain/binutils/binutils-2.27/gas/config/
tc-sparc.c 1150 int hwcaps, hwcaps2; local
3129 bfd_uint64_t hwcaps local
    [all...]

Completed in 665 milliseconds