Home
last modified time | relevance | path

Searched refs:getauxval (Results 1 – 3 of 3) sorted by relevance

/external/openssl/crypto/
Darmcap.c42 extern unsigned long getauxval(unsigned long type) __attribute__((weak));
44 static unsigned long (*getauxval)(unsigned long) = NULL; variable
103 if (getauxval != NULL) in OPENSSL_cpuid_setup()
105 if (getauxval(HWCAP) & HWCAP_NEON) in OPENSSL_cpuid_setup()
107 unsigned long hwcap = getauxval(HWCAP_CE); in OPENSSL_cpuid_setup()
/external/iputils/
Dping_common.c203 if (getauxval(AT_SECURE) != 0) { in android_check_security()
/external/openssl/patches/
D0014-arm_asm.patch3923 + * Use a weak reference to getauxval() so we can use it if it is available but
3928 +extern unsigned long getauxval(unsigned long type) __attribute__((weak));
3930 +static unsigned long (*getauxval)(unsigned long) = NULL;
3974 + if (getauxval != NULL)
3976 + if (getauxval(HWCAP) & HWCAP_NEON)
3978 + unsigned long hwcap = getauxval(HWCAP_CE);