Lines Matching refs:hwcaps
620 uint32_t hwcaps = ReadELFHWCaps(); in CPU() local
621 if (hwcaps != 0) { in CPU()
622 has_idiva_ = (hwcaps & HWCAP_IDIVA) != 0; in CPU()
623 has_neon_ = (hwcaps & HWCAP_NEON) != 0; in CPU()
624 has_vfp_ = (hwcaps & HWCAP_VFP) != 0; in CPU()
625 has_vfp3_ = (hwcaps & (HWCAP_VFPv3 | HWCAP_VFPv3D16 | HWCAP_VFPv4)) != 0; in CPU()
626 has_vfp3_d32_ = (has_vfp3_ && ((hwcaps & HWCAP_VFPv3D16) == 0 || in CPU()
627 (hwcaps & HWCAP_VFPD32) != 0)); in CPU()
722 uint32_t hwcaps = ReadELFHWCaps(); in CPU() local
723 if (hwcaps != 0) { in CPU()
724 has_jscvt_ = (hwcaps & HWCAP_JSCVT) != 0; in CPU()