Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/Arch/
H A DAArch64.cpp318 const auto ItBegin = Features.begin(); in getAArch64TargetFeatures() local
335 if (std::find(ItBegin, ItEnd, "+v8.4a") != ItEnd) { in getAArch64TargetFeatures()
340 const bool HasSM4 = (std::find(ItBegin, ItEnd, "-sm4") == ItEnd); in getAArch64TargetFeatures()
341 const bool HasSHA3 = (std::find(ItBegin, ItEnd, "-sha3") == ItEnd); in getAArch64TargetFeatures()
342 const bool HasSHA2 = (std::find(ItBegin, ItEnd, "-sha2") == ItEnd); in getAArch64TargetFeatures()
343 const bool HasAES = (std::find(ItBegin, ItEnd, "-aes") == ItEnd); in getAArch64TargetFeatures()
356 const bool HasSM4 = (std::find(ItBegin, ItEnd, "+sm4") != ItEnd); in getAArch64TargetFeatures()
357 const bool HasSHA3 = (std::find(ItBegin, ItEnd, "+sha3") != ItEnd); in getAArch64TargetFeatures()
358 const bool HasSHA2 = (std::find(ItBegin, ItEnd, "+sha2") != ItEnd); in getAArch64TargetFeatures()
359 const bool HasAES = (std::find(ItBegin, ItEnd, "+aes") != ItEnd); in getAArch64TargetFeatures()
[all …]