HomeSort by relevance Sort by last modified time
    Searched defs:hwcap (Results 1 - 8 of 8) sorted by null

  /external/boringssl/src/crypto/
cpu-aarch64-linux.c 29 unsigned long hwcap = getauxval(AT_HWCAP); local
31 // See /usr/include/asm/hwcap.h on an aarch64 installation for the source of
39 if ((hwcap & kNEON) == 0) {
47 if (hwcap & kAES) {
50 if (hwcap & kPMULL) {
53 if (hwcap & kSHA1) {
56 if (hwcap & kSHA256) {
cpu-arm-linux.c 37 // See /usr/include/asm/hwcap.h on an ARM installation for the source of
310 unsigned long hwcap = 0; local
312 hwcap = getauxval(AT_HWCAP);
314 if (hwcap == 0) {
315 hwcap = getauxval_proc(AT_HWCAP);
317 if (hwcap == 0) {
318 hwcap = get_hwcap_cpuinfo(&cpuinfo);
324 hwcap &= ~HWCAP_NEON;
328 if (hwcap & HWCAP_NEON) {
  /prebuilts/go/darwin-x86/src/runtime/
os_linux_arm.go 19 var hwcap uint32 // set by setup_auxv var
23 // On Android, /proc/self/auxv might be unreadable and hwcap won't
29 if goarm > 5 && hwcap&_HWCAP_VFP == 0 {
34 if goarm > 6 && hwcap&_HWCAP_VFPv3 == 0 {
57 hwcap = uint32(val)
58 hardDiv = (hwcap & _HWCAP_IDIVA) != 0
  /prebuilts/go/linux-x86/src/runtime/
os_linux_arm.go 19 var hwcap uint32 // set by setup_auxv var
23 // On Android, /proc/self/auxv might be unreadable and hwcap won't
29 if goarm > 5 && hwcap&_HWCAP_VFP == 0 {
34 if goarm > 6 && hwcap&_HWCAP_VFPv3 == 0 {
57 hwcap = uint32(val)
58 hardDiv = (hwcap & _HWCAP_IDIVA) != 0
  /external/fio/crc/
crc32c-arm64.c 105 unsigned long hwcap; local
108 hwcap = getauxval(AT_HWCAP);
109 if (hwcap & HWCAP_CRC32)
  /external/google-breakpad/src/processor/
minidump_processor.cc 381 uint32_t hwcap; member in struct:google_breakpad::__anon20903
446 if (elf_hwcaps & features[i].hwcap) {
    [all...]
  /external/valgrind/none/tests/ppc32/
test_dfp2.c 102 unsigned long hwcap; local
104 hwcap = fetch_at_hwcap();
105 if ((hwcap & PPC_FEATURE_HAS_VSX) == PPC_FEATURE_HAS_VSX)
  /external/valgrind/none/tests/ppc64/
test_dfp2.c 102 unsigned long hwcap; local
104 hwcap = fetch_at_hwcap();
105 if ((hwcap & PPC_FEATURE_HAS_VSX) == PPC_FEATURE_HAS_VSX)

Completed in 480 milliseconds