Home
last modified time | relevance | path

Searched refs:hwcaps (Results 1 – 2 of 2) sorted by relevance

/art/runtime/arch/arm64/
Dinstruction_set_features_arm64.cc176 Arm64FeaturesUniquePtr hwcaps = Arm64InstructionSetFeatures::FromHwcap(); in IntersectWithHwcap() local
180 has_crc_ && hwcaps->has_crc_, in IntersectWithHwcap()
181 has_lse_ && hwcaps->has_lse_, in IntersectWithHwcap()
182 has_fp16_ && hwcaps->has_fp16_, in IntersectWithHwcap()
183 has_dotprod_ && hwcaps->has_dotprod_, in IntersectWithHwcap()
184 has_sve_ && hwcaps->has_sve_)); in IntersectWithHwcap()
260 uint64_t hwcaps = getauxval(AT_HWCAP); in FromHwcap() local
261 has_crc = hwcaps & HWCAP_CRC32 ? true : false; in FromHwcap()
262 has_lse = hwcaps & HWCAP_ATOMICS ? true : false; in FromHwcap()
263 has_fp16 = hwcaps & HWCAP_FPHP ? true : false; in FromHwcap()
[all …]
/art/runtime/arch/arm/
Dinstruction_set_features_arm.cc219 uint64_t hwcaps = getauxval(AT_HWCAP); in FromHwcap() local
220 LOG(INFO) << "hwcaps=" << hwcaps; in FromHwcap()
221 if ((hwcaps & HWCAP_IDIVT) != 0) { in FromHwcap()
224 CHECK_NE(hwcaps & HWCAP_IDIVA, 0U); in FromHwcap()
227 if ((hwcaps & HWCAP_LPAE) != 0) { in FromHwcap()
233 if ((hwcaps & HWCAP2_CRC32) != 0 && (hwcaps & HWCAP2_SHA1) != 0) { in FromHwcap()