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

1 2

  /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];
  /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/valgrind/VEX/priv/
main_main.c 163 static void check_hwcaps ( VexArch arch, UInt hwcaps );
164 static const HChar* show_hwcaps ( VexArch arch, UInt hwcaps );
299 /* KLUDGE: S390 need to know the hwcaps of the host when generating
354 /* KLUDGE: export hwcaps. */
356 s390_host_hwcaps = vta->archinfo_host.hwcaps;
526 // not return if hwcaps are infeasible in some sense.
528 check_hwcaps(vta->arch_guest, vta->archinfo_guest.hwcaps);
541 vassert(vta->archinfo_guest.hwcaps == vta->archinfo_host.hwcaps);
    [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_arm_isel.c 118 UInt hwcaps; member in struct:__anon41684
    [all...]
host_x86_isel.c 181 UInt hwcaps; member in struct:__anon41996
    [all...]
host_x86_defs.c 725 X86Instr* X86Instr_MFence ( UInt hwcaps ) {
728 i->Xin.MFence.hwcaps = hwcaps;
729 vassert(0 == (hwcaps & ~(VEX_HWCAPS_X86_MMXEXT
    [all...]
guest_mips_toIR.c     [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/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...]
initimg-linux.c 389 /* The HW configuration setting (hwcaps) of the target can be
713 * or beyond). The Valgrind vai.hwcaps value
736 hw_caps_2_07 = (vex_archinfo->hwcaps & VEX_HWCAPS_PPC64_ISA2_07)
740 * matches the setting in VEX HWCAPS.
    [all...]
  /external/valgrind/coregrind/
m_machine.c 453 /* For hwcaps detection on ppc32/64, s390x, and arm we'll need to do SIGILL
642 * Initialize hwcaps by parsing /proc/cpuinfo . Returns False if it can not
696 vai.hwcaps = VEX_PRID_COMP_BROADCOM;
698 vai.hwcaps = VEX_PRID_COMP_NETLOGIC;
700 vai.hwcaps = VEX_PRID_COMP_CAVIUM;
702 vai.hwcaps = VEX_PRID_COMP_MIPS;
704 vai.hwcaps = VEX_PRID_COMP_INGENIC_E1;
706 vai.hwcaps = (VEX_PRID_COMP_LEGACY | VEX_PRID_IMP_LOONGSON_64);
709 vai.hwcaps = 0;
718 vai.hwcaps |= VEX_MIPS_CPU_ISA_M32R1
    [all...]
m_cache.c 609 if (! (vai->hwcaps & VEX_HWCAPS_S390X_GIE)) {
  /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; }
  /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/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));
  /external/valgrind/none/tests/
libvex_test.c 117 /* returns whatever kind of hwcaps needed to make
227 vta.archinfo_guest.hwcaps = arch_hwcaps (vta.arch_guest);
230 vta.archinfo_host.hwcaps = arch_hwcaps (vta.arch_host);
269 vta.archinfo_host.hwcaps = arch_hwcaps (vta.arch_host);
  /toolchain/binutils/binutils-2.27/include/opcode/
sparc.h 111 unsigned int hwcaps; member in struct:sparc_opcode
  /toolchain/binutils/binutils-2.27/gas/config/
tc-sparc.c 1150 int hwcaps, hwcaps2; local
3129 bfd_uint64_t hwcaps local
    [all...]
  /external/valgrind/coregrind/m_ume/
elf.c 272 state->overall_fp_mode = VEX_MIPS_HOST_FP_MODE(vai.hwcaps) ?
285 !VEX_MIPS_HOST_FP_MODE(vai.hwcaps)))
  /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...]
  /external/valgrind/coregrind/m_gdbserver/
valgrind-low-amd64.c 315 return (vai.hwcaps & VEX_HWCAPS_AMD64_AVX ? True : False);
  /toolchain/binutils/binutils-2.27/bfd/
elfxx-sparc.c 4835 obj_attribute *hwcaps = &attrs[Tag_GNU_Sparc_HWCAPS]; local
    [all...]
  /external/google-breakpad/src/client/linux/minidump_writer/
minidump_writer.cc 925 uint32_t hwcaps; member in struct:__anon20744::MinidumpWriter::CpuFeaturesEntry
    [all...]

Completed in 595 milliseconds

1 2