Home
last modified time | relevance | path

Searched refs:feature (Results 1 – 25 of 1718) sorted by relevance

12345678910>>...69

/openbmc/linux/rust/alloc/
H A Dlib.rs108 #![feature(ascii_char)]
113 #![feature(const_box)]
119 #![feature(const_pin)]
124 #![feature(core_panic)]
129 #![feature(extend_one)]
131 #![feature(fn_traits)]
142 #![feature(pattern)]
165 #![feature(unsize)]
177 #![feature(c_unwind)]
183 #![feature(const_try)]
[all …]
H A Dboxed.rs149 #![stable(feature = "rust1", since = "1.0.0")]
195 #[stable(feature = "rust1", since = "1.0.0")]
1113 feature = "ptr_internals",
1228 #[stable(feature = "rust1", since = "1.0.0")]
1246 #[stable(feature = "rust1", since = "1.0.0")]
1256 #[stable(feature = "rust1", since = "1.0.0")]
1280 #[stable(feature = "rust1", since = "1.0.0")]
1339 #[stable(feature = "rust1", since = "1.0.0")]
1350 #[stable(feature = "rust1", since = "1.0.0")]
1463 #[stable(feature = "pin", since = "1.33.0")]
[all …]
H A Dslice.rs12 #![stable(feature = "rust1", since = "1.0.0")]
50 #[stable(feature = "from_ref", since = "1.28.0")]
54 #[stable(feature = "rust1", since = "1.0.0")]
56 #[stable(feature = "rust1", since = "1.0.0")]
60 #[stable(feature = "rust1", since = "1.0.0")]
64 #[stable(feature = "rust1", since = "1.0.0")]
66 #[stable(feature = "rchunks", since = "1.31.0")]
70 #[stable(feature = "rust1", since = "1.0.0")]
773 #[stable(feature = "rust1", since = "1.0.0")]
780 #[stable(feature = "rust1", since = "1.0.0")]
[all …]
/openbmc/qemu/
H A Dmeson_options.txt42 option('docs', type : 'feature', value : 'auto',
70 option('kvm', type: 'feature', value: 'auto',
72 option('whpx', type: 'feature', value: 'auto',
74 option('hvf', type: 'feature', value: 'auto',
76 option('nvmm', type: 'feature', value: 'auto',
78 option('xen', type: 'feature', value: 'auto',
118 option('avx2', type: 'feature', value: 'auto',
279 option('oss', type: 'feature', value: 'auto',
281 option('pa', type: 'feature', value: 'auto',
327 option('dmg', type: 'feature', value: 'auto',
[all …]
/openbmc/qemu/tests/qemu-iotests/
H A D036.out3 === Image with unknown incompatible feature bit ===
9 … Could not open 'TEST_DIR/t.IMGFMT': Unsupported IMGFMT feature(s): Unknown incompatible feature: …
10 qemu-img: Could not open 'TEST_DIR/t.IMGFMT': Unsupported IMGFMT feature(s): Test feature
12 === Image with multiple incompatible feature bits ===
15 … Could not open 'TEST_DIR/t.IMGFMT': Unsupported IMGFMT feature(s): Unknown incompatible feature: …
16 …not open 'TEST_DIR/t.IMGFMT': Unsupported IMGFMT feature(s): Test feature, Unknown incompatible fe…
17 …not open 'TEST_DIR/t.IMGFMT': Unsupported IMGFMT feature(s): Test feature, Unknown incompatible fe…
18 …not open 'TEST_DIR/t.IMGFMT': Unsupported IMGFMT feature(s): test1, test2, Unknown incompatible fe…
19 qemu-img: Could not open 'TEST_DIR/t.IMGFMT': Unsupported IMGFMT feature(s): test1, test2, test3
20 …uld not open 'TEST_DIR/t.IMGFMT': Unsupported IMGFMT feature(s): test2, Unknown incompatible featu…
[all …]
/openbmc/qemu/tests/qapi-schema/
H A Ddoc-good.out56 feature feat3
113 a member feature
132 a feature
134 a member feature
142 a feature
153 a feature
169 a feature
171 another feature
195 a feature
197 another feature
[all …]
/openbmc/dbus-sensors/
H A Dmeson.options1 option('adc', type: 'feature', value: 'enabled', description: 'Enable ADC sensor.',)
2 option('intel-cpu', type: 'feature', value: 'enabled', description: 'Enable CPU sensor.',)
3 option('exit-air', type: 'feature', value: 'enabled', description: 'Enable exit air sensor.',)
4 option('fan', type: 'feature', value: 'enabled', description: 'Enable fan sensor.',)
7 option('ipmb', type: 'feature', value: 'enabled', description: 'Enable IPMB sensor.',)
8 option('mcu', type: 'feature', value: 'enabled', description: 'Enable MCU sensor.',)
9 option('nvme', type: 'feature', value: 'enabled', description: 'Enable NVMe sensor.',)
10 option('psu', type: 'feature', value: 'enabled', description: 'Enable PSU sensor.',)
12 option('tests', type: 'feature', value: 'enabled', description: 'Build tests.',)
13 option('validate-unsecure-feature', type : 'feature', value : 'disabled', description : 'Enables un…
[all …]
/openbmc/linux/rust/alloc/collections/
H A Dmod.rs5 #![stable(feature = "rust1", since = "1.0.0")]
17 #[stable(feature = "rust1", since = "1.0.0")]
25 #[stable(feature = "rust1", since = "1.0.0")]
33 #[stable(feature = "rust1", since = "1.0.0")]
38 #[stable(feature = "rust1", since = "1.0.0")]
43 #[stable(feature = "rust1", since = "1.0.0")]
48 #[stable(feature = "rust1", since = "1.0.0")]
53 #[stable(feature = "rust1", since = "1.0.0")]
72 feature = "try_reserve_kind",
84 feature = "try_reserve_kind",
[all …]
/openbmc/linux/arch/powerpc/include/asm/
H A Dcpu_has_feature.h10 static __always_inline bool early_cpu_has_feature(unsigned long feature) in early_cpu_has_feature() argument
12 return !!((CPU_FTRS_ALWAYS & feature) || in early_cpu_has_feature()
13 (CPU_FTRS_POSSIBLE & cur_cpu_spec->cpu_features & feature)); in early_cpu_has_feature()
23 static __always_inline bool cpu_has_feature(unsigned long feature) in cpu_has_feature() argument
28 BUILD_BUG_ON(!__builtin_constant_p(feature)); in cpu_has_feature()
35 return early_cpu_has_feature(feature); in cpu_has_feature()
39 if (CPU_FTRS_ALWAYS & feature) in cpu_has_feature()
42 if (!(CPU_FTRS_POSSIBLE & feature)) in cpu_has_feature()
45 i = __builtin_ctzl(feature); in cpu_has_feature()
49 static __always_inline bool cpu_has_feature(unsigned long feature) in cpu_has_feature() argument
[all …]
H A Dmmu.h229 if (MMU_FTRS_ALWAYS & feature) in early_mmu_has_feature()
249 BUILD_BUG_ON(!__builtin_constant_p(feature)); in mmu_has_feature()
256 return early_mmu_has_feature(feature); in mmu_has_feature()
260 if (MMU_FTRS_ALWAYS & feature) in mmu_has_feature()
263 if (!(MMU_FTRS_POSSIBLE & feature)) in mmu_has_feature()
266 i = __builtin_ctzl(feature); in mmu_has_feature()
270 static inline void mmu_clear_feature(unsigned long feature) in mmu_clear_feature() argument
274 i = __builtin_ctzl(feature); in mmu_clear_feature()
275 cur_cpu_spec->mmu_features &= ~feature; in mmu_clear_feature()
287 return early_mmu_has_feature(feature); in mmu_has_feature()
[all …]
/openbmc/linux/arch/x86/kernel/cpu/
H A Dcpuid-deps.c8 unsigned int feature; member
96 clear_cpu_cap(&boot_cpu_data, feature); in clear_feature()
112 if (WARN_ON(feature >= MAX_FEATURE_BITS)) in do_clear_cpu_cap()
115 clear_feature(c, feature); in do_clear_cpu_cap()
119 __set_bit(feature, disable); in do_clear_cpu_cap()
124 for (d = cpuid_deps; d->feature; d++) { in do_clear_cpu_cap()
127 if (__test_and_set_bit(d->feature, disable)) in do_clear_cpu_cap()
131 clear_feature(c, d->feature); in do_clear_cpu_cap()
138 do_clear_cpu_cap(c, feature); in clear_cpu_cap()
141 void setup_clear_cpu_cap(unsigned int feature) in setup_clear_cpu_cap() argument
[all …]
/openbmc/openbmc/poky/meta/lib/oe/
H A Dpackagegroup.py9 def is_optional(feature, d): argument
10 return bool(d.getVarFlag("FEATURE_PACKAGES_%s" % feature, "optional"))
13 for feature in features:
14 packages = d.getVar("FEATURE_PACKAGES_%s" % feature)
19 req = [feature for feature in features if not is_optional(feature, d)]
23 opt = [feature for feature in features if is_optional(feature, d)]
/openbmc/linux/rust/alloc/vec/
H A Dmod.rs56 #![stable(feature = "rust1", since = "1.0.0")]
83 #[stable(feature = "vec_splice", since = "1.21.0")]
89 #[stable(feature = "drain", since = "1.6.0")]
100 #[stable(feature = "rust1", since = "1.0.0")]
396 #[stable(feature = "rust1", since = "1.0.0")]
2778 #[stable(feature = "rust1", since = "1.0.0")]
2849 #[stable(feature = "rust1", since = "1.0.0")]
2859 #[stable(feature = "rust1", since = "1.0.0")]
2868 #[stable(feature = "rust1", since = "1.0.0")]
2902 #[stable(feature = "rust1", since = "1.0.0")]
[all …]
H A Dpartial_eq.rs25 __impl_slice_eq1! { [A1: Allocator, A2: Allocator] Vec<T, A1>, Vec<U, A2>, #[stable(feature = "rust…
26 __impl_slice_eq1! { [A: Allocator] Vec<T, A>, &[U], #[stable(feature = "rust1", since = "1.0.0")] }
27 __impl_slice_eq1! { [A: Allocator] Vec<T, A>, &mut [U], #[stable(feature = "rust1", since = "1.0.0"…
28 __impl_slice_eq1! { [A: Allocator] &[T], Vec<U, A>, #[stable(feature = "partialeq_vec_for_ref_slice…
30 __impl_slice_eq1! { [A: Allocator] Vec<T, A>, [U], #[stable(feature = "partialeq_vec_for_slice", si…
31 __impl_slice_eq1! { [A: Allocator] [T], Vec<U, A>, #[stable(feature = "partialeq_vec_for_slice", si…
33 __impl_slice_eq1! { [A: Allocator] Cow<'_, [T]>, Vec<U, A> where T: Clone, #[stable(feature = "rust…
35 __impl_slice_eq1! { [] Cow<'_, [T]>, &[U] where T: Clone, #[stable(feature = "rust1", since = "1.0.…
37 __impl_slice_eq1! { [] Cow<'_, [T]>, &mut [U] where T: Clone, #[stable(feature = "rust1", since = "…
38 __impl_slice_eq1! { [A: Allocator, const N: usize] Vec<T, A>, [U; N], #[stable(feature = "rust1", s…
[all …]
H A Ddrain.rs23 #[stable(feature = "drain", since = "1.6.0")]
38 #[stable(feature = "collection_debug", since = "1.17.0")]
64 #[unstable(feature = "allocator_api", issue = "32838")]
148 #[stable(feature = "drain", since = "1.6.0")]
150 #[stable(feature = "drain", since = "1.6.0")]
153 #[stable(feature = "drain", since = "1.6.0")]
167 #[stable(feature = "drain", since = "1.6.0")]
175 #[stable(feature = "drain", since = "1.6.0")]
244 #[stable(feature = "drain", since = "1.6.0")]
251 #[unstable(feature = "trusted_len", issue = "37572")]
[all …]
H A Dinto_iter.rs33 #[stable(feature = "rust1", since = "1.0.0")]
180 #[stable(feature = "rust1", since = "1.0.0")]
182 #[stable(feature = "rust1", since = "1.0.0")]
185 #[stable(feature = "rust1", since = "1.0.0")]
296 #[stable(feature = "rust1", since = "1.0.0")]
334 #[stable(feature = "rust1", since = "1.0.0")]
341 #[stable(feature = "fused", since = "1.26.0")]
344 #[unstable(feature = "trusted_len", issue = "37572")]
347 #[stable(feature = "default_iters", since = "1.70.0")]
366 #[unstable(issue = "none", feature = "std_internals")]
[all …]
/openbmc/phosphor-mrw-tools/
H A Dhwmon.pl215 for my $feature (sort keys %{$entry->{hwmon}}) {
216 print $f "LABEL_$feature = \"$entry->{hwmon}{$feature}{label}\"\n";
219 if (exists $entry->{hwmon}{$feature}{warnhigh}) {
220 print $f "WARNHI_$feature = \"$entry->{hwmon}{$feature}{warnhigh}\"\n";
222 if (exists $entry->{hwmon}{$feature}{warnlow}) {
223 print $f "WARNLO_$feature = \"$entry->{hwmon}{$feature}{warnlow}\"\n";
225 if (exists $entry->{hwmon}{$feature}{crithigh}) {
226 print $f "CRITHI_$feature = \"$entry->{hwmon}{$feature}{crithigh}\"\n";
228 if (exists $entry->{hwmon}{$feature}{critlow}) {
229 print $f "CRITLO_$feature = \"$entry->{hwmon}{$feature}{critlow}\"\n";
/openbmc/linux/drivers/fpga/
H A Ddfl-fme-main.c163 struct dfl_feature *feature, in fme_hdr_ioctl() argument
217 const struct dfl_feature *feature = drvdata; in thermal_hwmon_attrs_visible() local
316 struct dfl_feature *feature) in fme_thermal_mgmt_init() argument
339 "dfl_fme_thermal", feature, in fme_thermal_mgmt_init()
385 v = readq(feature->ioaddr + FME_PWR_STATUS); in power_hwmon_read()
517 v = readq(feature->ioaddr + FME_PWR_STATUS); in power1_ltr_show()
537 struct dfl_feature *feature) in fme_power_mgmt_init() argument
542 "dfl_fme_power", feature, in fme_power_mgmt_init()
624 struct dfl_feature *feature; in fme_release() local
633 dfl_fpga_set_irq_triggers(feature, 0, in fme_release()
[all …]
H A Ddfl.c389 ddev->params = kmemdup(feature->params, feature->param_size, GFP_KERNEL); in dfl_dev_add()
443 if (feature->ddev) { in dfl_devs_remove()
457 if (feature->ioaddr) in dfl_devs_add()
460 if (feature->ddev) { in dfl_devs_add()
499 #define is_header_feature(feature) ((feature)->id == FEATURE_ID_FIU_HEADER) argument
513 if (feature->ops) { in dfl_fpga_dev_feature_uinit()
515 feature->ops->uinit(pdev, feature); in dfl_fpga_dev_feature_uinit()
536 feature->id); in dfl_feature_instance_init()
591 feature, drv); in dfl_fpga_dev_feature_init()
816 feature->dev = fdev; in build_info_commit_dev()
[all …]
/openbmc/linux/drivers/mtd/nand/raw/
H A Dnand_macronix.c59 feature[0] = mode; in macronix_nand_setup_read_retry()
69 feature); in macronix_nand_randomizer_check_enable()
73 if (feature[0]) in macronix_nand_randomizer_check_enable()
74 return feature[0]; in macronix_nand_randomizer_check_enable()
78 feature); in macronix_nand_randomizer_check_enable()
83 feature[0] = 0x0; in macronix_nand_randomizer_check_enable()
89 feature); in macronix_nand_randomizer_check_enable()
95 feature); in macronix_nand_randomizer_check_enable()
206 feature); in mxic_nand_lock()
222 feature); in mxic_nand_unlock()
[all …]
/openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/
H A Dsigning.py82 feature = 'INHERIT += "sign_rpm"\n'
83 feature += 'RPM_GPG_PASSPHRASE = "test123"\n'
84 feature += 'RPM_GPG_NAME = "testuser"\n'
85 feature += 'GPG_PATH = "%s"\n' % self.gpg_dir
87 self.write_config(feature)
144 feature = 'SSTATE_SIG_KEY ?= "testuser"\n'
146 feature += 'SSTATE_VERIFY_SIG ?= "1"\n'
152 self.write_config(feature)
196 feature = 'require %s\n' % locked_sigs_file
198 self.write_config(feature)
[all …]
/openbmc/linux/arch/x86/include/asm/
H A Dcpu_device_id.h84 .feature = _feature, \
95 .feature = _feature, \
116 X86_STEPPING_ANY, feature, data)
131 #define X86_MATCH_VENDOR_FAM_FEATURE(vendor, family, feature, data) \ argument
133 X86_MODEL_ANY, feature, data)
147 #define X86_MATCH_VENDOR_FEATURE(vendor, feature, data) \ argument
148 X86_MATCH_VENDOR_FAM_FEATURE(vendor, X86_FAMILY_ANY, feature, data)
160 #define X86_MATCH_FEATURE(feature, data) \ argument
161 X86_MATCH_VENDOR_FEATURE(ANY, feature, data)
258 #define X86_MATCH_VFM_FEATURE(vfm, feature, data) \ argument
[all …]
/openbmc/linux/drivers/iommu/intel/
H A Dcap_audit.h67 #define DO_CHECK_FEATURE_MISMATCH(a, b, cap, feature, MASK) \ argument
69 if (cap##_##feature(a) != cap##_##feature(b)) { \
71 pr_info("IOMMU feature %s inconsistent", #feature); \
75 #define CHECK_FEATURE_MISMATCH(a, b, cap, feature, MASK) \ argument
76 DO_CHECK_FEATURE_MISMATCH((a)->cap, (b)->cap, cap, feature, MASK)
78 #define CHECK_FEATURE_MISMATCH_HOTPLUG(b, cap, feature, MASK) \ argument
80 if (cap##_##feature(intel_iommu_##cap##_sanity)) \
82 (b)->cap, cap, feature, MASK); \
93 #define MINIMAL_FEATURE_HOTPLUG(iommu, cap, feature, MASK, mismatch) \ argument
96 (cap##_##feature((iommu)->cap))) \
/openbmc/bmcweb/
H A Dmeson.options3 type: 'feature',
11 type: 'feature',
18 type: 'feature',
33 # type: 'feature',
40 type: 'feature',
50 type: 'feature',
58 type: 'feature',
66 type: 'feature',
74 type: 'feature',
82 type: 'feature',
[all …]
/openbmc/linux/arch/loongarch/include/asm/
H A Dalternative.h15 u16 feature; /* feature bit set for replacement */ member
60 #define ALTINSTR_ENTRY(feature, num) \ argument
63 " .short " __stringify(feature) "\n" /* feature bit */ \
67 #define ALTINSTR_REPLACEMENT(newinstr, feature, num) /* replacement */ \ argument
71 #define ALTERNATIVE(oldinstr, newinstr, feature) \ argument
74 ALTINSTR_ENTRY(feature, 1) \
77 ALTINSTR_REPLACEMENT(newinstr, feature, 1) \
103 #define alternative(oldinstr, newinstr, feature) \ argument
104 (asm volatile (ALTERNATIVE(oldinstr, newinstr, feature) : : : "memory"))

12345678910>>...69