Searched refs:getauxval (Results 1 - 9 of 9) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_getauxval.h9 // Common getauxval() guards and definitions.
10 // getauxval() is not defined until glibc version 2.16, or until API level 21
12 // Implement the getauxval() compat function for NetBSD.
34 // The weak getauxval definition allows to check for the function at runtime.
37 extern "C" SANITIZER_WEAK_ATTRIBUTE unsigned long getauxval(unsigned long type);
47 static inline decltype(AuxInfo::a_v) getauxval(decltype(AuxInfo::a_type) type) {
H A Dsanitizer_linux_libcdep.cpp829 pathname = reinterpret_cast<const char *>(getauxval(AT_EXECFN));
H A Dsanitizer_linux.cpp1077 return getauxval(AT_PAGESZ);
/freebsd-11-stable/crypto/openssl/crypto/
H A Darmcap.c52 * Use a weak reference to getauxval() so we can use it if it is available but
57 extern unsigned long getauxval(unsigned long type) __attribute__ ((weak));
59 static unsigned long (*getauxval) (unsigned long) = NULL; variable
121 if (getauxval != NULL) {
122 if (getauxval(HWCAP) & HWCAP_NEON) {
123 unsigned long hwcap = getauxval(HWCAP_CE);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/
H A Dscudo_utils.cpp111 // calling getauxval is safe.
125 if (&getauxval && areBionicGlobalsInitialized())
126 return !!(getauxval(AT_HWCAP) & HWCAP_CRC32);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dchecksum.cpp64 return !!(getauxval(AT_HWCAP) & HWCAP_CRC32);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/lsan/
H A Dlsan_common_linux.cpp36 return module.base_address() == getauxval(AT_BASE);
/freebsd-11-stable/contrib/unbound/compat/
H A Dgetentropy_linux.c515 p = (char *) getauxval(AT_RANDOM);
520 p = (char *) getauxval(AT_SYSINFO_EHDR);
525 p = (char *) getauxval(AT_BASE);
/freebsd-11-stable/contrib/unbound/
H A Dconfigure20931 for ac_func in getauxval
20933 ac_fn_c_check_func "$LINENO" "getauxval" "ac_cv_func_getauxval"

Completed in 271 milliseconds