Home | History | Annotate | Download | only in cpufeatures

Lines Matching refs:hwcaps

603         /* Extract the list of CPU features from ELF hwcaps */
604 uint32_t hwcaps = get_elf_hwcap();
606 if (hwcaps != 0) {
607 int has_vfp = (hwcaps & HWCAP_VFP);
608 int has_vfpv3 = (hwcaps & HWCAP_VFPv3);
609 int has_vfpv3d16 = (hwcaps & HWCAP_VFPv3D16);
610 int has_vfpv4 = (hwcaps & HWCAP_VFPv4);
611 int has_neon = (hwcaps & HWCAP_NEON);
612 int has_idiva = (hwcaps & HWCAP_IDIVA);
613 int has_idivt = (hwcaps & HWCAP_IDIVT);
614 int has_iwmmxt = (hwcaps & HWCAP_IWMMXT);