Home
last modified time | relevance | path

Searched full:feature (Results 1 – 25 of 2394) sorted by relevance

12345678910>>...96

/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DFeatures.def10 // via __has_extension. Users of this file must either define the FEATURE or
17 // The Predicate field dictates the conditions under which 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,
[all …]
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_get/
H A Dzpool_get.cfg67 "feature@async_destroy"
68 "feature@empty_bpobj"
69 "feature@lz4_compress"
70 "feature@multi_vdev_crash_dump"
71 "feature@spacemap_histogram"
72 "feature@enabled_txg"
73 "feature@hole_birth"
74 "feature@extensible_dataset"
75 "feature@embedded_data"
76 "feature@bookmarks"
[all …]
/freebsd/sys/contrib/openzfs/man/man7/
H A Dzpool-features.734 To enable a feature on a pool use the
37 .Sy feature Ns @ Ns Ar feature-name
41 .Sx Compatibility feature sets
55 Every feature has a GUID of the form
56 .Ar com.example : Ns Ar feature-name .
57 The reversed DNS name ensures that the feature's GUID is unique across all ZFS
64 Each supported feature also has a short name.
65 By convention a feature's short name is the portion of its GUID which follows
70 .Ar com.example : Ns Ar feature
[all...]
/freebsd/contrib/sendmail/cf/cf/
H A DMakefile98 ${CFDIR}/feature/accept_unqualified_senders.m4 \
99 ${CFDIR}/feature/accept_unresolvable_domains.m4 \
100 ${CFDIR}/feature/access_db.m4 \
101 ${CFDIR}/feature/allmasquerade.m4 \
102 ${CFDIR}/feature/always_add_domain.m4 \
103 ${CFDIR}/feature/authinfo.m4 \
104 ${CFDIR}/feature/badmx.m4 \
105 ${CFDIR}/feature/bcc.m4 \
106 ${CFDIR}/feature/bestmx_is_local.m4 \
107 ${CFDIR}/feature/bitdomain.m4 \
[all …]
/freebsd/sys/contrib/openzfs/module/zfs/
H A Dzfeature.c36 * ZFS Feature Flags
39 * ZFS feature flags are used to provide fine-grained versioning to the ZFS
40 * on-disk format. Once enabled on a pool feature flags replace the old
46 * keep feature GUIDs unique they should consist of the reverse dns name of the
47 * organization which implemented the feature and a short name for the feature,
55 * disk for each feature:
57 * 1) If there is no reference count stored on disk the feature is disabled.
59 * feature, but the feature has not been used yet, so no on-disk
61 * 3) If the reference count is greater than 0 the feature is active.
62 * The format changes required by the feature are currently on disk.
[all …]
/freebsd/tests/sys/cddl/zfs/tests/cli_root/zpool_get/
H A Dzpool_get.cfg53 "feature@async_destroy"
54 "feature@empty_bpobj"
55 "feature@lz4_compress"
56 "feature@multi_vdev_crash_dump"
57 "feature@spacemap_histogram"
58 "feature@enabled_txg"
59 "feature@hole_birth"
60 "feature@extensible_dataset"
61 "feature@embedded_data"
62 "feature@bookmarks"
[all …]
/freebsd/contrib/llvm-project/lldb/bindings/interface/
H A DSBExpressionOptionsDocstrings.i1 %feature("docstring",
5 %feature("docstring", "Sets whether to coerce the expression result to ObjC id type after evaluatio…
8 %feature("docstring", "Sets whether to unwind the expression stack on error."
11 %feature("docstring", "Sets whether to ignore breakpoint hits while running expressions."
14 %feature("docstring", "Sets whether to cast the expression result to its dynamic type."
17 %feature("docstring", "Sets the timeout in microseconds to run the expression for. If try all threa…
20 %feature("docstring", "Sets the timeout in microseconds to run the expression on one thread before …
23 %feature("docstring", "Sets whether to run all threads if the expression does not complete on one t…
26 %feature("docstring", "Sets whether to stop other threads at all while running expressions. If fal…
29 %feature("docstring", "Sets whether to abort expression evaluation if an exception is thrown while …
[all …]
H A DSBProcessDocstrings.i1 %feature("docstring",
23 %feature("docstring", "
28 %feature("docstring", "
34 %feature("docstring", "
40 %feature("docstring", "
46 %feature("docstring",
50 %feature("docstring", "
57 %feature("docstring", "
61 %feature("docstring", "
65 %feature("docstring", "
[all …]
H A DSBThreadDocstrings.i1 %feature("docstring",
31 %feature("docstring", "
36 %feature("docstring", "
58 %feature("docstring", "
64 %feature("docstring", "
70 %feature("docstring", "
75 %feature("docstring", "
84 %feature("docstring", "
94 %feature("docstring", "
99 %feature("docstring", "
[all …]
H A DSBTypeDocstrings.i1 %feature("docstring",
5 %feature("docstring",
9 %feature("docstring",
98 %feature("docstring",
118 %feature("docstring",
131 %feature("docstring",
142 %feature("docstring",
155 %feature("docstring",
169 %feature("docstring",
175 GCC's ``vector_size`` or Clang's ``ext_vector_type`` feature
[all...]
/freebsd/contrib/llvm-project/clang/lib/Basic/Targets/
H A DWebAssembly.cpp1 //===--- WebAssembly.cpp - Implement WebAssembly target feature support ---===//
26 #define TARGET_BUILTIN(ID, TYPE, ATTRS, FEATURE) \ argument
27 {#ID, TYPE, ATTRS, FEATURE, HeaderDesc::NO_HEADER, ALL_LANGUAGES},
46 bool WebAssemblyTargetInfo::hasFeature(StringRef Feature) const { in hasFeature()
47 return llvm::StringSwitch<bool>(Feature) in hasFeature()
182 for (const auto &Feature : Features) { in handleTargetFeatures() local
183 if (Feature == "+atomics") { in handleTargetFeatures()
187 if (Feature == "-atomics") { in handleTargetFeatures()
191 if (Feature == "+bulk-memory") { in handleTargetFeatures()
195 if (Feature == "-bulk-memory") { in handleTargetFeatures()
[all …]
H A DAArch64.cpp1 //===--- AArch64.cpp - Implement AArch64 target feature support -----------===//
32 #define TARGET_BUILTIN(ID, TYPE, ATTRS, FEATURE) \ argument
33 {#ID, TYPE, ATTRS, FEATURE, HeaderDesc::NO_HEADER, ALL_LANGUAGES},
38 #define TARGET_BUILTIN(ID, TYPE, ATTRS, FEATURE) \ argument
39 {#ID, TYPE, ATTRS, FEATURE, HeaderDesc::NO_HEADER, ALL_LANGUAGES},
44 #define TARGET_BUILTIN(ID, TYPE, ATTRS, FEATURE) \ argument
45 {#ID, TYPE, ATTRS, FEATURE, HeaderDesc::NO_HEADER, ALL_LANGUAGES},
52 #define TARGET_BUILTIN(ID, TYPE, ATTRS, FEATURE) \ argument
53 {#ID, TYPE, ATTRS, FEATURE, HeaderDesc::NO_HEADER, ALL_LANGUAGES},
54 #define TARGET_HEADER_BUILTIN(ID, TYPE, ATTRS, HEADER, LANGS, FEATURE) \ argument
[all …]
H A DX86.cpp1 //===--- X86.cpp - Implement X86 target feature support -------------------===//
29 #define TARGET_BUILTIN(ID, TYPE, ATTRS, FEATURE) \ argument
30 {#ID, TYPE, ATTRS, FEATURE, HeaderDesc::NO_HEADER, ALL_LANGUAGES},
31 #define TARGET_HEADER_BUILTIN(ID, TYPE, ATTRS, HEADER, LANGS, FEATURE) \ argument
32 {#ID, TYPE, ATTRS, FEATURE, HeaderDesc::HEADER, LANGS},
37 #define TARGET_BUILTIN(ID, TYPE, ATTRS, FEATURE) \ argument
38 {#ID, TYPE, ATTRS, FEATURE, HeaderDesc::NO_HEADER, ALL_LANGUAGES},
39 #define TARGET_HEADER_BUILTIN(ID, TYPE, ATTRS, HEADER, LANGS, FEATURE) \ argument
40 {#ID, TYPE, ATTRS, FEATURE, HeaderDesc::HEADER, LANGS},
147 for (const auto &Feature : FeaturesVec) { in initFeatureMap() local
[all …]
/freebsd/sys/contrib/openzfs/cmd/
H A Dzhack.c76 " feature stat <pool>\n" in usage()
78 " feature enable [-r] [-d desc] <pool> <feature>\n" in usage()
79 " add a new enabled feature to the pool\n" in usage()
80 " -d <desc> sets the feature's description\n" in usage()
81 " -r set read-only compatible flag for feature\n" in usage()
82 " feature ref [-md] <pool> <feature>\n" in usage()
83 " change the refcount on the given feature\n" in usage()
85 " -m add the feature to the label if increasing refcount\n" in usage()
87 " <feature> : should be a feature guid\n" in usage()
277 zfeature_info_t *feature = arg; in zhack_feature_enable_sync() local
[all …]
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/longname/
H A Dlongname_003_pos.ksh31 # Check if longnames are handled correctly by ZIL replay and feature is activated.
34 # 1. Create a zpool with longname feature disabled
35 # 2. Enable the feature@longname
40 # 7. Replaying of longname create should activate the feature@longname
49 log_assert "Check feature@longname and 'longname' dataset propery work correctly"
55 log_must zpool create -o feature@longname=disabled $TESTPOOL $DISKS
70 log_must zpool set feature@longname=enabled $TESTPOOL
73 # Ensure that the feature is NOT activated yet as no longnamed file is created.
74 state=$(zpool get feature@longname -H -o value $TESTPOOL)
75 log_note "feature@longname on pool: $TESTPOOL : $state"
[all …]
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCSubtargetInfo.cpp35 /// For each feature that is (transitively) implied by this feature, set it.
47 /// For each feature that (transitively) implies this feature, clear it.
59 static void ApplyFeatureFlag(FeatureBitset &Bits, StringRef Feature, in ApplyFeatureFlag() argument
61 assert(SubtargetFeatures::hasFlag(Feature) && in ApplyFeatureFlag()
62 "Feature flags should start with '+' or '-'"); in ApplyFeatureFlag()
64 // Find feature in table. in ApplyFeatureFlag()
66 Find(SubtargetFeatures::StripFlag(Feature), FeatureTable); in ApplyFeatureFlag()
69 // Enable/disable feature in bits in ApplyFeatureFlag()
70 if (SubtargetFeatures::isEnabled(Feature)) { in ApplyFeatureFlag()
73 // For each feature that this implies, set it. in ApplyFeatureFlag()
[all …]
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_set/
H A Dzfs_set_feature_activation.ksh34 # the zstd feature flag. Destroying the last dataset using the zstd feature flag
35 # should revert the feature to the 'enabled' state.
39 # 2. Check that the zstd feature flag is 'enabled'.
41 # 4. Check that the zstd feature flag is now 'active'.
43 # 6. Confirm that the feature flag reverts to the 'enabled' state.
49 "org.freebsd:zstd_compress feature flag, and destroying the last"\
50 "dataset using that property, should revert the feature flag to"\
68 featureval="$(get_pool_prop feature@zstd_compress $TESTPOOL-zstd)"
71 log_unsupported "ZSTD feature flag unsupposed"
74 log_unsupported "ZSTD feature already active before test"
[all …]
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/replacement/
H A Drebuild_disabled_feature.ksh24 # Verify device_rebuild feature flags.
28 # 2. Verify 'zpool replace -s' fails and the feature is disabled.
29 # 3. Enable the device_rebuild feature.
30 # 4. Verify 'zpool replace -s' works and the feature is active.
31 # 5. Wait for the feature to return to enabled.
44 feature=$1
48 value="$(zpool get -H -o property,value all $pool | awk -v f="$feature" '$0 ~ f {print $2}')"
50 log_note "$feature verified to be $value"
52 log_fail "$feature should be $expected_value but is $value"
56 log_assert "Verify device_rebuild feature flags."
[all …]
/freebsd/contrib/ldns/m4/
H A Dax_config_feature.m47 # AX_CONFIG_FEATURE(FEATURE-NAME, FEATURE-DESCRIPTION, DEFINE, DEFINE-DESCRIPTION, [ACTION-IF-ENA…
12 # feature FEATURE-NAME and AC_DEFINEs the passed DEFINE, depending on the
14 # and ACTION-IF-NOT-ENABLED are the actions that will be run. A feature is
44 # enable or disable a specific feature.
94 m4_pushdef([FEATURE], patsubst([$1], -, _))dnl
99 ax_config_feature_[]FEATURE[]="yes"
102 ax_config_feature_[]FEATURE[]="no"
105 AC_MSG_ERROR([bad value ${enableval} for feature --$1])
110 AS_IF([test "$ax_config_feature_[]FEATURE[]" = yes],[ dnl
114 AC_MSG_NOTICE([Feature $1 is enabled])
[all …]
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_import/
H A Dzpool_import_features_003_pos.ksh32 # Pool can be imported with active read-only compatible features. If a feature
39 # the active read-only compatible feature and mention "readonly=on".
64 for feature in $enabled_features $active_features; do
65 log_must zhack -d $DEVICE_DIR feature enable -r $TESTPOOL1 $feature
68 for feature in $active_features; do
69 log_must zhack -d $DEVICE_DIR feature ref $TESTPOOL1 $feature
78 for feature in $enabled_features; do
80 | grep $feature"
84 for feature in $active_features; do
86 | grep $feature"
[all …]
/freebsd/sys/contrib/device-tree/Bindings/powerpc/
H A Dibm,powerpc-cpu-features.txt24 Description: Container of CPU feature nodes.
51 compatibility, less the individual feature nodes. For example, an ISA v3.0
66 /cpus/ibm,powerpc-cpu-features/example-feature node bindings
69 Each child node of cpu-features represents a CPU feature / capability.
71 Node: A string describing an architected CPU feature, e.g., "floating-point".
73 Description: A feature or capability supported by the CPUs.
79 Presence of the node indicates the feature is available.
88 First level of the Power ISA that the feature appears in.
105 that can use the feature.
119 feature to lesser privilege levels. If the property does not exist then no
[all …]
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_create/
H A Dzpool_create.shlib92 # Verify a pools enabled features match the provided feature set.
94 # $2, feature set(s)
108 log_fail "Missing feature file: $ZPOOL_COMPAT_DIR/$set"
114 # common to the listed feature sets. This is used for comparison
138 # Verify every enabled feature appears in the merged feature set.
139 # Verify every disabled feature does not.
141 for feature in $(zpool get all $pool | \
142 awk '$2 ~ /feature@/ { print $2 }'); do
143 state=$(get_pool_prop $feature $pool)
144 name=$(cut -d'@' -f2 <<<"$feature")
[all …]
/freebsd/sys/contrib/openzfs/.github/ISSUE_TEMPLATE/
H A Dfeature_request.md2 name: Feature request
3 about: Suggest a feature for OpenZFS
5 labels: 'Type: Feature'
11 Thank you for suggesting a feature.
13 Please check our issue tracker before opening a new feature request.
14 …ng out the following template will help other contributors better understand your proposed feature.
17 ### Describe the feature would like to see added to OpenZFS
20 Provide a clear and concise description of the feature.
23 ### How will this feature improve OpenZFS?
26 What problem does this feature solve?
/freebsd/sys/contrib/openzfs/man/man1/
H A Dzhack.139 .Cm feature stat
42 List feature flags.
46 .Cm feature enable
52 Add a new feature to
62 is a short human readable explanation of the new feature.
70 feature.
74 .Cm feature ref
81 feature in
88 feature in
96 feature is now required to read the pool MOS.
[all …]
/freebsd/sys/netinet/
H A Dsctp_var.h44 #define sctp_feature_on(inp, feature) (inp->sctp_features |= feature) argument
45 #define sctp_feature_off(inp, feature) (inp->sctp_features &= ~feature) argument
46 #define sctp_is_feature_on(inp, feature) ((inp->sctp_features & feature) == feature) argument
47 #define sctp_is_feature_off(inp, feature) ((inp->sctp_features & feature) == 0) argument
49 #define sctp_stcb_feature_on(inp, stcb, feature) {\ argument
51 stcb->asoc.sctp_features |= feature; \
53 inp->sctp_features |= feature; \
56 #define sctp_stcb_feature_off(inp, stcb, feature) {\ argument
58 stcb->asoc.sctp_features &= ~feature; \
60 inp->sctp_features &= ~feature; \
[all …]

12345678910>>...96