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