Lines Matching refs:hwcaps
666 // Try to extract the list of CPU features from ELF hwcaps.
667 uint32_t hwcaps = ReadELFHWCaps();
668 if (hwcaps != 0) {
669 has_idiva_ = (hwcaps & HWCAP_IDIVA) != 0;
670 has_neon_ = (hwcaps & HWCAP_NEON) != 0;
671 has_vfp_ = (hwcaps & HWCAP_VFP) != 0;
672 has_vfp3_ = (hwcaps & (HWCAP_VFPv3 | HWCAP_VFPv3D16 | HWCAP_VFPv4)) != 0;
673 has_vfp3_d32_ = (has_vfp3_ && ((hwcaps & HWCAP_VFPv3D16) == 0 ||
674 (hwcaps & HWCAP_VFPD32) != 0));
777 // Try to extract the list of CPU features from ELF hwcaps.
778 uint32_t hwcaps = ReadELFHWCaps();
779 if (hwcaps != 0) {
780 has_jscvt_ = (hwcaps & HWCAP_JSCVT) != 0;