| /src/external/apache2/mDNSResponder/dist/mDNSShared/ |
| mDNSFeatures.h | 27 #define MDNSRESPONDER_SUPPORTS(PLATFORM, FEATURE) \ 29 HAS_FEATURE(MDNSRESPONDER_SUPPORTS_ ## PLATFORM ## _ ## FEATURE)) 44 // Feature: DNS Push 52 // Feature: DNS LLQ 64 // Feature: Use Multicast DNS to discover the local DNS server that is authoritative for a given domain. 76 // Feature: DNS-SD Sleep Proxy Service (SPS) client support
|
| /src/external/apache2/llvm/dist/clang/lib/Basic/Targets/ |
| SystemZ.cpp | 1 //===--- SystemZ.cpp - Implement SystemZ target feature support -----------===// 26 #define TARGET_BUILTIN(ID, TYPE, ATTRS, FEATURE) \ 27 {#ID, TYPE, ATTRS, nullptr, ALL_LANGUAGES, FEATURE}, 114 bool SystemZTargetInfo::hasFeature(StringRef Feature) const { 115 return llvm::StringSwitch<bool>(Feature)
|
| Hexagon.cpp | 1 //===--- Hexagon.cpp - Implement Hexagon target feature support -----------===// 164 #define TARGET_BUILTIN(ID, TYPE, ATTRS, FEATURE) \ 165 {#ID, TYPE, ATTRS, nullptr, ALL_LANGUAGES, FEATURE}, 169 bool HexagonTargetInfo::hasFeature(StringRef Feature) const { 171 if (Feature == VS) 174 return llvm::StringSwitch<bool>(Feature)
|
| WebAssembly.cpp | 1 //===--- WebAssembly.cpp - Implement WebAssembly target feature support ---===// 26 #define TARGET_BUILTIN(ID, TYPE, ATTRS, FEATURE) \ 27 {#ID, TYPE, ATTRS, nullptr, ALL_LANGUAGES, FEATURE}, 46 bool WebAssemblyTargetInfo::hasFeature(StringRef Feature) const { 47 return llvm::StringSwitch<bool>(Feature) 143 for (const auto &Feature : Features) { 144 if (Feature == "+simd128") { 148 if (Feature == "-simd128") { 152 if (Feature == "+nontrapping-fptoint") { 156 if (Feature == "-nontrapping-fptoint") [all...] |
| X86.cpp | 1 //===--- X86.cpp - Implement X86 target feature support -------------------===// 28 #define TARGET_BUILTIN(ID, TYPE, ATTRS, FEATURE) \ 29 {#ID, TYPE, ATTRS, nullptr, ALL_LANGUAGES, FEATURE}, 30 #define TARGET_HEADER_BUILTIN(ID, TYPE, ATTRS, HEADER, LANGS, FEATURE) \ 31 {#ID, TYPE, ATTRS, HEADER, LANGS, FEATURE}, 36 #define TARGET_BUILTIN(ID, TYPE, ATTRS, FEATURE) \ 37 {#ID, TYPE, ATTRS, nullptr, ALL_LANGUAGES, FEATURE}, 38 #define TARGET_HEADER_BUILTIN(ID, TYPE, ATTRS, HEADER, LANGS, FEATURE) \ 39 {#ID, TYPE, ATTRS, HEADER, LANGS, FEATURE}, 169 for (const auto &Feature : Features) [all...] |
| AMDGPU.cpp | 1 //===--- AMDGPU.cpp - Implement AMDGPU target feature support -------------===// 92 #define TARGET_BUILTIN(ID, TYPE, ATTRS, FEATURE) \ 93 {#ID, TYPE, ATTRS, nullptr, ALL_LANGUAGES, FEATURE},
|
| NVPTX.cpp | 1 //===--- NVPTX.cpp - Implement NVPTX target feature support ---------------===// 29 #define TARGET_BUILTIN(ID, TYPE, ATTRS, FEATURE) \ 30 {#ID, TYPE, ATTRS, nullptr, ALL_LANGUAGES, FEATURE}, 44 for (const StringRef Feature : Opts.FeaturesAsWritten) { 45 if (!Feature.startswith("+ptx")) 47 PTXVersion = llvm::StringSwitch<unsigned>(Feature) 171 bool NVPTXTargetInfo::hasFeature(StringRef Feature) const { 172 return llvm::StringSwitch<bool>(Feature)
|
| RISCV.cpp | 1 //===--- RISCV.cpp - Implement RISCV target feature support ---------------===// 232 #define TARGET_BUILTIN(ID, TYPE, ATTRS, FEATURE) \ 233 {#ID, TYPE, ATTRS, nullptr, ALL_LANGUAGES, FEATURE}, 252 /// Return true if has this feature, need to sync with handleTargetFeatures. 253 bool RISCVTargetInfo::hasFeature(StringRef Feature) const { 255 return llvm::StringSwitch<bool>(Feature) 287 for (const auto &Feature : Features) { 288 if (Feature == "+m") 290 else if (Feature == "+a") 292 else if (Feature == "+f" [all...] |
| AArch64.cpp | 1 //===--- AArch64.cpp - Implement AArch64 target feature support -----------===// 38 #define TARGET_HEADER_BUILTIN(ID, TYPE, ATTRS, HEADER, LANGS, FEATURE) \ 39 {#ID, TYPE, ATTRS, HEADER, LANGS, FEATURE}, 290 // The __ARM_FEATURE_CRYPTO is deprecated in favor of finer grained feature 427 bool AArch64TargetInfo::hasFeature(StringRef Feature) const { 428 return Feature == "aarch64" || Feature == "arm64" || Feature == "arm" || 429 (Feature == "neon" && (FPU & NeonMode)) || 430 ((Feature == "sve" || Feature == "sve2" || Feature == "sve2-bitperm" | [all...] |
| ARM.cpp | 1 //===--- ARM.cpp - Implement ARM target feature support -------------------===// 373 // Map the base architecture to an appropriate target feature, so we don't 391 for (auto Feature : TargetFeatures) 392 if (Feature[0] == '+') 393 Features[Feature.drop_front(1)] = true; 405 for (const auto &Feature : FeaturesVec) { 408 if (Feature == "+soft-float-abi") 412 if (Feature == "+arm") 414 else if (Feature == "+thumb") 417 FixedFeature = Feature; [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
| AArch64TargetParser.h | 93 #define AARCH64_ARCH_EXT_NAME(NAME, ID, FEATURE, NEGFEATURE) \ 94 {NAME, sizeof(NAME) - 1, ID, FEATURE, NEGFEATURE},
|
| ARMTargetParser.h | 77 const char *Feature; 84 #define ARM_ARCH_EXT_NAME(NAME, ID, FEATURE, NEGFEATURE) \ 85 {NAME, sizeof(NAME) - 1, ID, FEATURE, NEGFEATURE},
|
| /src/external/bsd/jemalloc/dist/scripts/ |
| gen_travis.py | 69 FEATURE = auto() 93 return Option(Option.Type.FEATURE, value) 178 features = [x.value for x in combination if x.type == Option.Type.FEATURE] 193 features_str = ' '.join([' {}=yes'.format(feature) for feature in features])
|
| /src/external/apache2/llvm/dist/clang/lib/Frontend/ |
| FrontendActions.cpp | 556 for (StringRef Feature : LangOpts.ModuleFeatures) 557 Out.indent(6) << Feature << "\n"; 917 #define FEATURE(Name, Predicate) \ 921 #undef FEATURE
|
| /src/external/gpl2/gettext/dist/ |
| configure | 19 # is contrary to our usage. Disable this feature. 244 # is contrary to our usage. Disable this feature. 265 # is contrary to our usage. Disable this feature. 793 { echo "$as_me: error: invalid feature name: $ac_feature" >&2 812 { echo "$as_me: error: invalid feature name: $ac_feature" >&2 1262 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) 1263 --enable-FEATURE[=ARG] include FEATURE [ARG=yes [all...] |
| /src/external/gpl2/gettext/dist/gettext-tools/examples/ |
| configure | 19 # is contrary to our usage. Disable this feature. 244 # is contrary to our usage. Disable this feature. 265 # is contrary to our usage. Disable this feature. 760 { echo "$as_me: error: invalid feature name: $ac_feature" >&2 779 { echo "$as_me: error: invalid feature name: $ac_feature" >&2 1225 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) 1226 --enable-FEATURE[=ARG] include FEATURE [ARG=yes [all...] |
| /src/external/gpl3/binutils.old/dist/etc/ |
| configure | 21 # is contrary to our usage. Disable this feature. 165 # is contrary to our usage. Disable this feature. 772 as_fn_error $? "invalid feature name: $ac_useropt" 798 as_fn_error $? "invalid feature name: $ac_useropt" 1275 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) 1276 --enable-FEATURE[=ARG] include FEATURE [ARG=yes] 2579 # is contrary to our usage. Disable this feature [all...] |
| /src/external/gpl3/gdb/dist/etc/ |
| configure | 21 # is contrary to our usage. Disable this feature. 165 # is contrary to our usage. Disable this feature. 772 as_fn_error $? "invalid feature name: $ac_useropt" 798 as_fn_error $? "invalid feature name: $ac_useropt" 1275 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) 1276 --enable-FEATURE[=ARG] include FEATURE [ARG=yes] 2579 # is contrary to our usage. Disable this feature [all...] |
| /src/external/gpl3/gdb/dist/readline/ |
| configure | 21 # is contrary to our usage. Disable this feature. 165 # is contrary to our usage. Disable this feature. 775 as_fn_error $? "invalid feature name: $ac_useropt" 801 as_fn_error $? "invalid feature name: $ac_useropt" 1278 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) 1279 --enable-FEATURE[=ARG] include FEATURE [ARG=yes] 2539 # is contrary to our usage. Disable this feature [all...] |
| /src/external/gpl3/gdb.old/dist/etc/ |
| configure | 21 # is contrary to our usage. Disable this feature. 165 # is contrary to our usage. Disable this feature. 772 as_fn_error $? "invalid feature name: $ac_useropt" 798 as_fn_error $? "invalid feature name: $ac_useropt" 1275 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) 1276 --enable-FEATURE[=ARG] include FEATURE [ARG=yes] 2579 # is contrary to our usage. Disable this feature [all...] |
| /src/external/gpl3/gdb.old/dist/readline/ |
| configure | 21 # is contrary to our usage. Disable this feature. 165 # is contrary to our usage. Disable this feature. 775 as_fn_error $? "invalid feature name: $ac_useropt" 801 as_fn_error $? "invalid feature name: $ac_useropt" 1278 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) 1279 --enable-FEATURE[=ARG] include FEATURE [ARG=yes] 2539 # is contrary to our usage. Disable this feature [all...] |
| /src/external/bsd/openldap/dist/contrib/ldaptcl/ |
| configure | 22 # is contrary to our usage. Disable this feature. 166 # is contrary to our usage. Disable this feature. 809 as_fn_error $? "invalid feature name: $ac_useropt" 835 as_fn_error $? "invalid feature name: $ac_useropt" 1315 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) 1316 --enable-FEATURE[=ARG] include FEATURE [ARG=yes] 3238 # is contrary to our usage. Disable this feature [all...] |
| /src/external/gpl3/binutils/dist/etc/ |
| configure | 21 # is contrary to our usage. Disable this feature. 165 # is contrary to our usage. Disable this feature. 772 as_fn_error $? "invalid feature name: $ac_useropt" 798 as_fn_error $? "invalid feature name: $ac_useropt" 1275 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) 1276 --enable-FEATURE[=ARG] include FEATURE [ARG=yes] 2579 # is contrary to our usage. Disable this feature [all...] |
| /src/lib/librumpuser/ |
| configure | 23 # is contrary to our usage. Disable this feature. 167 # is contrary to our usage. Disable this feature. 809 as_fn_error $? "invalid feature name: $ac_useropt" 835 as_fn_error $? "invalid feature name: $ac_useropt" 1312 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) 1313 --enable-FEATURE[=ARG] include FEATURE [ARG=yes] 4357 # is contrary to our usage. Disable this feature [all...] |
| /src/external/bsd/less/dist/ |
| configure | 24 # is contrary to our usage. Disable this feature. 147 # is contrary to our usage. Disable this feature. 830 as_fn_error $? "invalid feature name: \`$ac_useropt'" 856 as_fn_error $? "invalid feature name: \`$ac_useropt'" 1338 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) 1339 --enable-FEATURE[=ARG] include FEATURE [ARG=yes] 6302 # is contrary to our usage. Disable this feature [all...] |