HomeSort by relevance Sort by last modified time
    Searched refs:hwcaps (Results 1 - 25 of 38) 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:__anon36929::__anon36930::__anon36950
684 extern X86Instr* X86Instr_MFence ( UInt hwcaps );
host_arm_isel.c 118 UInt hwcaps; member in struct:__anon36662
    [all...]
host_x86_isel.c 181 UInt hwcaps; member in struct:__anon36974
    [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/r11/sources/android/cpufeatures/
cpu-features.c 546 // On success, return new ELF hwcaps, or 0 on failure.
584 uint32_t hwcaps = 0; local
596 D("Faking 32-bit ARM HWCaps on ARMv%ld CPU\n", architecture);
606 hwcaps |= HWCAP_VFP;
608 hwcaps |= HWCAP_VFPv3;
610 hwcaps |= HWCAP_VFPv3D16;
612 hwcaps |= HWCAP_VFPv4;
614 hwcaps |= HWCAP_NEON;
616 hwcaps |= HWCAP_IDIVA;
618 hwcaps |= HWCAP_IDIVT
776 uint32_t hwcaps = 0; local
960 uint32_t hwcaps = 0; local
1029 uint32_t hwcaps = 0; local
    [all...]
  /prebuilts/ndk/r13/sources/android/cpufeatures/
cpu-features.c 547 // On success, return new ELF hwcaps, or 0 on failure.
585 uint32_t hwcaps = 0; local
597 D("Faking 32-bit ARM HWCaps on ARMv%ld CPU\n", architecture);
607 hwcaps |= HWCAP_VFP;
609 hwcaps |= HWCAP_VFPv3;
611 hwcaps |= HWCAP_VFPv3D16;
613 hwcaps |= HWCAP_VFPv4;
615 hwcaps |= HWCAP_NEON;
617 hwcaps |= HWCAP_IDIVA;
619 hwcaps |= HWCAP_IDIVT
777 uint32_t hwcaps = 0; local
961 uint32_t hwcaps = 0; local
1049 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)) {
m_libcprint.c 300 "Arch and hwcaps: %s, %s, %s\n",
303 LibVEX_ppVexHwCaps ( vex_arch, vex_archinfo.hwcaps )
    [all...]
  /art/runtime/arch/arm/
instruction_set_features_arm.cc 192 uint64_t hwcaps = getauxval(AT_HWCAP); local
193 LOG(INFO) << "hwcaps=" << hwcaps;
194 if ((hwcaps & HWCAP_IDIVT) != 0) {
197 CHECK_NE(hwcaps & HWCAP_IDIVA, 0U);
200 if ((hwcaps & HWCAP_LPAE) != 0) {
206 if ((hwcaps & HWCAP2_CRC32) != 0 && (hwcaps & HWCAP2_SHA1) != 0) {
  /external/skia/src/core/
SkCpu.cpp 84 uint32_t hwcaps = getauxval(AT_HWCAP); local
85 if (hwcaps & HWCAP_CRC32) { features |= SkCpu::CRC32; }
97 uint32_t hwcaps = getauxval(AT_HWCAP); local
98 if (hwcaps & HWCAP_VFPv4) { features |= SkCpu::NEON|SkCpu::NEON_FMA|SkCpu::VFP_FP16; }
  /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.25/include/opcode/
sparc.h 102 unsigned int hwcaps; member in struct:sparc_opcode
  /toolchain/binutils/binutils-2.25/gas/config/
tc-sparc.c 980 int hwcaps, hwcaps2;
1005 hwcaps = hwcap_seen & U0xffffffff;
1008 if (hwcaps)
1009 bfd_elf_add_obj_attr_int (stdoutput, OBJ_ATTR_GNU, Tag_GNU_Sparc_HWCAPS, hwcaps);
975 int hwcaps, hwcaps2; local
3007 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:__anon37021
    [all...]
  /external/valgrind/coregrind/m_gdbserver/
valgrind-low-amd64.c 315 return (vai.hwcaps & VEX_HWCAPS_AMD64_AVX ? True : False);
  /external/google-breakpad/src/client/linux/minidump_writer/
minidump_writer.cc 925 uint32_t hwcaps; member in struct:__anon19526::MinidumpWriter::CpuFeaturesEntry
    [all...]

Completed in 5959 milliseconds

1 2