Home
last modified time | relevance | path

Searched refs:hwcap2 (Results 1 – 6 of 6) sorted by relevance

/third_party/rust/crates/rustix/src/backend/linux_raw/param/
Dauxv.rs59 let mut hwcap2 = HWCAP2.load(Relaxed); in linux_hwcap() localVariable
61 if hwcap == 0 || hwcap2 == 0 { in linux_hwcap()
64 hwcap2 = HWCAP2.load(Relaxed); in linux_hwcap()
67 (hwcap, hwcap2) in linux_hwcap()
196 let mut hwcap2 = 0; in init_from_auxp() localVariable
210 AT_HWCAP2 => hwcap2 = a_val as usize, in init_from_auxp()
230 HWCAP2.store(hwcap2, Relaxed); in init_from_auxp()
/third_party/rust/crates/rustix/tests/param/
Dauxv.rs33 let (_hwcap, hwcap2) = linux_hwcap(); in test_linux_hwcap()
39 assert_eq!(hwcap2, unsafe { libc_getauxval(libc::AT_HWCAP2) } as usize); in test_linux_hwcap()
/third_party/rust/crates/rustix/src/backend/libc/param/
Dauxv.rs35 let hwcap2 = libc_getauxval(c::AT_HWCAP2) as usize; in linux_hwcap() localVariable
36 (hwcap, hwcap2) in linux_hwcap()
/third_party/node/deps/openssl/openssl/crypto/
Dppccap.c219 unsigned long hwcap2 = getauxval(HWCAP2); in OPENSSL_cpuid_setup() local
238 if ((hwcap & HWCAP_VSX) && (hwcap2 & HWCAP_VEC_CRYPTO)) in OPENSSL_cpuid_setup()
242 if (hwcap2 & HWCAP_ARCH_3_00) { in OPENSSL_cpuid_setup()
/third_party/openssl/crypto/
Dppccap.c219 unsigned long hwcap2 = getauxval(HWCAP2); in OPENSSL_cpuid_setup() local
238 if ((hwcap & HWCAP_VSX) && (hwcap2 & HWCAP_VEC_CRYPTO)) in OPENSSL_cpuid_setup()
242 if (hwcap2 & HWCAP_ARCH_3_00) { in OPENSSL_cpuid_setup()
/third_party/skia/third_party/externals/abseil-cpp/absl/random/internal/
Dranden_detect.cc161 const uint32_t hwcap2 = GetAuxval(AT_HWCAP2); in CPUSupportsRandenHwAes()
162 return (hwcap2 & kAES) != 0; in CPUSupportsRandenHwAes()