Searched refs:hwcaps2 (Results 1 – 1 of 1) sorted by relevance
845 uint32_t hwcaps2 = 0; in android_cpuInit() local847 hwcaps2 = get_elf_hwcap_from_getauxval(AT_HWCAP2); in android_cpuInit()849 if (hwcaps2 != 0) { in android_cpuInit()850 int has_aes = (hwcaps2 & HWCAP2_AES); in android_cpuInit()851 int has_pmull = (hwcaps2 & HWCAP2_PMULL); in android_cpuInit()852 int has_sha1 = (hwcaps2 & HWCAP2_SHA1); in android_cpuInit()853 int has_sha2 = (hwcaps2 & HWCAP2_SHA2); in android_cpuInit()854 int has_crc32 = (hwcaps2 & HWCAP2_CRC32); in android_cpuInit()