Home | History | Annotate | Download | only in cpufeatures

Lines Matching defs:hwcaps2

849         /* Extract the list of CPU features from ELF hwcaps2 */
850 uint32_t hwcaps2 = 0;
851 hwcaps2 = get_elf_hwcap_from_getauxval(AT_HWCAP2);
852 if (hwcaps2 != 0) {
853 int has_aes = (hwcaps2 & HWCAP2_AES);
854 int has_pmull = (hwcaps2 & HWCAP2_PMULL);
855 int has_sha1 = (hwcaps2 & HWCAP2_SHA1);
856 int has_sha2 = (hwcaps2 & HWCAP2_SHA2);
857 int has_crc32 = (hwcaps2 & HWCAP2_CRC32);