Lines Matching refs:hwcaps
470 uint32_t hwcaps = 0; in get_elf_hwcap() local
478 hwcaps |= HWCAP_VFP; in get_elf_hwcap()
480 hwcaps |= HWCAP_VFPv3; in get_elf_hwcap()
482 hwcaps |= HWCAP_VFPv3D16; in get_elf_hwcap()
484 hwcaps |= HWCAP_VFPv4; in get_elf_hwcap()
486 hwcaps |= HWCAP_NEON; in get_elf_hwcap()
488 hwcaps |= HWCAP_IDIVA; in get_elf_hwcap()
490 hwcaps |= HWCAP_IDIVT; in get_elf_hwcap()
492 hwcaps |= HWCAP_IDIVA | HWCAP_IDIVT; in get_elf_hwcap()
494 hwcaps |= HWCAP_IWMMXT; in get_elf_hwcap()
498 return hwcaps; in get_elf_hwcap()
648 uint32_t hwcaps = get_elf_hwcap(cpuinfo, cpuinfo_len); in android_cpuInit() local
650 if (hwcaps != 0) { in android_cpuInit()
651 int has_vfp = (hwcaps & HWCAP_VFP); in android_cpuInit()
652 int has_vfpv3 = (hwcaps & HWCAP_VFPv3); in android_cpuInit()
653 int has_vfpv3d16 = (hwcaps & HWCAP_VFPv3D16); in android_cpuInit()
654 int has_vfpv4 = (hwcaps & HWCAP_VFPv4); in android_cpuInit()
655 int has_neon = (hwcaps & HWCAP_NEON); in android_cpuInit()
656 int has_idiva = (hwcaps & HWCAP_IDIVA); in android_cpuInit()
657 int has_idivt = (hwcaps & HWCAP_IDIVT); in android_cpuInit()
658 int has_iwmmxt = (hwcaps & HWCAP_IWMMXT); in android_cpuInit()