Searched refs:HWCAP_CRC32 (Results 1 - 2 of 2) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dchecksum.cpp51 #ifndef HWCAP_CRC32
52 #define HWCAP_CRC32 (1U << 7) // HWCAP_CRC32 is missing on older platforms. macro
64 return !!(getauxval(AT_HWCAP) & HWCAP_CRC32);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/
H A Dscudo_utils.cpp85 # ifndef HWCAP_CRC32
86 # define HWCAP_CRC32 (1 << 7) // HWCAP_CRC32 is missing on older platforms. macro
101 return (Entry.Tag == AT_HWCAP && (Entry.Value & HWCAP_CRC32) != 0);
126 return !!(getauxval(AT_HWCAP) & HWCAP_CRC32);

Completed in 64 milliseconds