| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/ |
| H A D | Features.def | 10 // via __has_extension. Users of this file must either define the FEATURE or 20 // FEATURE(...) should be used to advertise support for standard language 27 #if !defined(FEATURE) && !defined(EXTENSION) 28 # error Define either the FEATURE or EXTENSION macro to handle features 31 #ifndef FEATURE 32 #define FEATURE(Name, Predicate) 39 FEATURE(speculative_load_hardening, LangOpts.SpeculativeLoadHardening) 40 FEATURE(address_sanitizer, 43 FEATURE(leak_sanitizer, 45 FEATURE(hwaddress_sanitizer, [all …]
|
| H A D | X86Target.def | 14 #ifndef FEATURE 15 #define FEATURE(ENUM) 30 FEATURE(FEATURE_CMOV) 31 FEATURE(FEATURE_MMX) 32 FEATURE(FEATURE_SSE) 33 FEATURE(FEATURE_SSE2) 34 FEATURE(FEATURE_SSE3) 35 FEATURE(FEATURE_SSSE3) 36 FEATURE(FEATURE_SSE4_A) 37 FEATURE(FEATURE_SSE4_1) [all …]
|
| H A D | BuiltinsBPF.def | 17 # define TARGET_BUILTIN(ID, TYPE, ATTRS, FEATURE) BUILTIN(ID, TYPE, ATTRS)
|
| H A D | BuiltinsX86_64.def | 17 # define TARGET_BUILTIN(ID, TYPE, ATTRS, FEATURE) BUILTIN(ID, TYPE, ATTRS) 21 # define TARGET_HEADER_BUILTIN(ID, TYPE, ATTRS, HEADER, LANG, FEATURE) BUILTIN(ID, TYPE, ATTRS)
|
| /netbsd-src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/cmake/ |
| H A D | CXXFeatureCheck.cmake | 23 string(TOUPPER "HAVE_${VAR}" FEATURE) 30 if (NOT DEFINED COMPILE_${FEATURE}) 31 message(STATUS "Performing Test ${FEATURE}") 33 try_compile(COMPILE_${FEATURE} 37 if(COMPILE_${FEATURE}) 40 set(RUN_${FEATURE} 0) 42 set(RUN_${FEATURE} 1) 45 message(STATUS "Performing Test ${FEATURE}") 46 try_run(RUN_${FEATURE} COMPILE_${FEATURE} 53 if(RUN_${FEATURE} EQUAL 0) [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/utils/benchmark/cmake/ |
| H A D | CXXFeatureCheck.cmake | 23 string(TOUPPER "HAVE_${VAR}" FEATURE) 30 if (NOT DEFINED COMPILE_${FEATURE}) 31 message("-- Performing Test ${FEATURE}") 33 try_compile(COMPILE_${FEATURE} 37 if(COMPILE_${FEATURE}) 40 set(RUN_${FEATURE} 0) 42 set(RUN_${FEATURE} 1) 45 message("-- Performing Test ${FEATURE}") 46 try_run(RUN_${FEATURE} COMPILE_${FEATURE} 53 if(RUN_${FEATURE} EQUAL 0) [all …]
|
| /netbsd-src/external/gpl3/gdb/dist/config/ |
| H A D | enable.m4 | 6 dnl (FEATURE, DEFAULT, HELP-ARG, HELP-STRING) 7 dnl (FEATURE, DEFAULT, HELP-ARG, HELP-STRING, permit a|b|c) 8 dnl (FEATURE, DEFAULT, HELP-ARG, HELP-STRING, SHELL-CODE-HANDLER)
|
| /netbsd-src/external/gpl3/binutils/dist/config/ |
| H A D | enable.m4 | 6 dnl (FEATURE, DEFAULT, HELP-ARG, HELP-STRING) 7 dnl (FEATURE, DEFAULT, HELP-ARG, HELP-STRING, permit a|b|c) 8 dnl (FEATURE, DEFAULT, HELP-ARG, HELP-STRING, SHELL-CODE-HANDLER)
|
| /netbsd-src/external/gpl3/gcc/dist/config/ |
| H A D | enable.m4 | 6 dnl (FEATURE, DEFAULT, HELP-ARG, HELP-STRING) 7 dnl (FEATURE, DEFAULT, HELP-ARG, HELP-STRING, permit a|b|c) 8 dnl (FEATURE, DEFAULT, HELP-ARG, HELP-STRING, SHELL-CODE-HANDLER)
|
| /netbsd-src/external/gpl3/gcc.old/dist/config/ |
| H A D | enable.m4 | 6 dnl (FEATURE, DEFAULT, HELP-ARG, HELP-STRING) 7 dnl (FEATURE, DEFAULT, HELP-ARG, HELP-STRING, permit a|b|c) 8 dnl (FEATURE, DEFAULT, HELP-ARG, HELP-STRING, SHELL-CODE-HANDLER)
|
| /netbsd-src/external/gpl3/binutils.old/dist/config/ |
| H A D | enable.m4 | 6 dnl (FEATURE, DEFAULT, HELP-ARG, HELP-STRING) 7 dnl (FEATURE, DEFAULT, HELP-ARG, HELP-STRING, permit a|b|c) 8 dnl (FEATURE, DEFAULT, HELP-ARG, HELP-STRING, SHELL-CODE-HANDLER)
|
| /netbsd-src/external/gpl3/gdb.old/dist/config/ |
| H A D | enable.m4 | 6 dnl (FEATURE, DEFAULT, HELP-ARG, HELP-STRING) 7 dnl (FEATURE, DEFAULT, HELP-ARG, HELP-STRING, permit a|b|c) 8 dnl (FEATURE, DEFAULT, HELP-ARG, HELP-STRING, SHELL-CODE-HANDLER)
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Basic/Targets/ |
| H A D | X86.cpp | 28 #define TARGET_BUILTIN(ID, TYPE, ATTRS, FEATURE) \ argument 29 {#ID, TYPE, ATTRS, nullptr, ALL_LANGUAGES, FEATURE}, 30 #define TARGET_HEADER_BUILTIN(ID, TYPE, ATTRS, HEADER, LANGS, FEATURE) \ argument 31 {#ID, TYPE, ATTRS, HEADER, LANGS, FEATURE}, 36 #define TARGET_BUILTIN(ID, TYPE, ATTRS, FEATURE) \ argument 37 {#ID, TYPE, ATTRS, nullptr, ALL_LANGUAGES, FEATURE}, 38 #define TARGET_HEADER_BUILTIN(ID, TYPE, ATTRS, HEADER, LANGS, FEATURE) \ argument 39 {#ID, TYPE, ATTRS, HEADER, LANGS, FEATURE}, 1038 #define FEATURE(FEAT) FEAT, in getFeaturePriority() macro 1042 #define FEATURE(FEAT) \ in getFeaturePriority() macro
|
| H A D | SystemZ.cpp | 26 #define TARGET_BUILTIN(ID, TYPE, ATTRS, FEATURE) \ argument 27 {#ID, TYPE, ATTRS, nullptr, ALL_LANGUAGES, FEATURE},
|
| H A D | Hexagon.cpp | 164 #define TARGET_BUILTIN(ID, TYPE, ATTRS, FEATURE) \ argument 165 {#ID, TYPE, ATTRS, nullptr, ALL_LANGUAGES, FEATURE},
|
| H A D | WebAssembly.cpp | 26 #define TARGET_BUILTIN(ID, TYPE, ATTRS, FEATURE) \ argument 27 {#ID, TYPE, ATTRS, nullptr, ALL_LANGUAGES, FEATURE},
|
| H A D | NVPTX.cpp | 29 #define TARGET_BUILTIN(ID, TYPE, ATTRS, FEATURE) \ argument 30 {#ID, TYPE, ATTRS, nullptr, ALL_LANGUAGES, FEATURE},
|
| H A D | RISCV.cpp | 232 #define TARGET_BUILTIN(ID, TYPE, ATTRS, FEATURE) \ argument 233 {#ID, TYPE, ATTRS, nullptr, ALL_LANGUAGES, FEATURE},
|
| H A D | AMDGPU.cpp | 92 #define TARGET_BUILTIN(ID, TYPE, ATTRS, FEATURE) \ argument 93 {#ID, TYPE, ATTRS, nullptr, ALL_LANGUAGES, FEATURE},
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
| H A D | AArch64TargetParser.h | 93 #define AARCH64_ARCH_EXT_NAME(NAME, ID, FEATURE, NEGFEATURE) \ argument 94 {NAME, sizeof(NAME) - 1, ID, FEATURE, NEGFEATURE},
|
| H A D | ARMTargetParser.h | 84 #define ARM_ARCH_EXT_NAME(NAME, ID, FEATURE, NEGFEATURE) \ argument 85 {NAME, sizeof(NAME) - 1, ID, FEATURE, NEGFEATURE},
|
| /netbsd-src/external/gpl3/autoconf/dist/lib/autoconf/ |
| H A D | programs.m4 | 409 # _AC_PATH_PROGS_FEATURE_CHECK(VARIABLE, PROGNAME-LIST, FEATURE-TEST, 412 # FEATURE-TEST is called repeatedly with $ac_path_VARIABLE set to the 413 # name of a program in PROGNAME-LIST found in PATH. FEATURE-TEST must set 417 # found in the FEATURE-TEST macro, it can set $ac_path_VARIABLE_found=':' 444 # FEATURE-TEST, [ACTION-IF-NOT-FOUND=:], 453 # no invocation of FEATURE-TEST sets $ac_cv_path_VARIABLE to the 455 # FEATURE-TEST is invoked even when $ac_cv_path_VARIABLE is set, 457 # current setting and bypass further checks, FEATURE-TEST can set 468 # For use as the FEATURE-TEST argument to _AC_PATH_PROGS_FEATURE_TEST.
|
| /netbsd-src/external/bsd/openpam/dist/ |
| H A D | HISTORY | 71 - FEATURE: Add a search path for modules. This was implemented in 108 - FEATURE: Add an openpam_readword(3) function which reads the next 112 - FEATURE: Add an openpam_readlinev(3) function which uses the 118 - FEATURE: Add a PAM_HOST item which pam_start(3) initializes to the 122 - FEATURE: In pam_get_authtok(3), if neither the application nor the
|
| /netbsd-src/external/bsd/libevent/dist/m4/ |
| H A D | ax_prog_doxygen.m4 | 139 # DX_IF_FEATURE(FEATURE, IF-ON, IF-OFF) 159 # DX_TEST_FEATURE(FEATURE) 174 # DX_CLEAR_DEPEND(FEATURE, REQUIRED_FEATURE, REQUIRED_STATE) 181 # DX_FEATURE_ARG(FEATURE, DESCRIPTION,
|
| /netbsd-src/tools/ |
| H A D | README | 137 ... code to be used when FEATURE X is desired, 140 ... code to be used when FEATURE X is not desired,
|