Searched refs:feature (Results 51 - 75 of 347) sorted by relevance

1234567891011>>

/linux-master/fs/nilfs2/
H A Dsysfs.h62 NILFS_COMMON_ATTR_STRUCT(feature); variable
105 NILFS_INFO_ATTR(feature, name)
107 NILFS_RO_ATTR(feature, name)
109 NILFS_RW_ATTR(feature, name)
/linux-master/arch/powerpc/include/asm/
H A Dsynch.h7 #include <asm/feature-fixups.h>
H A Dfirmware.h15 /* firmware feature bitmask values */
130 #define firmware_has_feature(feature) \
131 ((FW_FEATURE_ALWAYS & (feature)) || \
132 (FW_FEATURE_POSSIBLE & powerpc_firmware_features & (feature)))
/linux-master/arch/arm/include/asm/
H A Dcputype.h334 int feature = (features >> field) & 15; local
336 /* feature registers are signed values */
337 if (feature > 7)
338 feature -= 16;
340 return feature;
/linux-master/tools/testing/selftests/kvm/x86_64/
H A Dvmx_msrs_test.c72 struct kvm_x86_cpu_feature feature)
76 vcpu_clear_cpuid_feature(vcpu, feature);
85 if (!kvm_cpu_has(feature))
88 vcpu_set_cpuid_feature(vcpu, feature);
70 __ia32_feature_control_msr_test(struct kvm_vcpu *vcpu, uint64_t msr_bit, struct kvm_x86_cpu_feature feature) argument
/linux-master/drivers/gpu/drm/imagination/
H A Dpvr_stream.h41 u32 feature; member in struct:pvr_stream_def
H A Dpvr_device.h74 * @features: Hardware feature information.
350 * PVR_HAS_FEATURE() - Tests whether a PowerVR device has a given feature
352 * @feature: [IN] Hardware feature name.
358 * * true if the named feature is present in the hardware
359 * * false if the named feature is not present in the hardware
361 #define PVR_HAS_FEATURE(pvr_dev, feature) ((pvr_dev)->features.has_##feature)
364 * PVR_FEATURE_VALUE() - Gets a PowerVR device feature value
366 * @feature
[all...]
H A Dpvr_stream_defs.c17 .feature = (_feature) }
22 #define PVR_STREAM_DEF_FEATURE(owner, member, member_size, feature) \
23 PVR_STREAM_DEF_SET(owner, member, PVR_STREAM_SIZE_ ## member_size, 0, feature)
25 #define PVR_STREAM_DEF_NOT_FEATURE(owner, member, member_size, feature) \
27 (feature) | PVR_FEATURE_NOT)
33 #define PVR_STREAM_DEF_ARRAY_FEATURE(owner, member, feature) \
35 sizeof(((struct owner *)0)->member), feature)
37 #define PVR_STREAM_DEF_ARRAY_NOT_FEATURE(owner, member, feature) \
39 sizeof(((struct owner *)0)->member), (feature) | PVR_FEATURE_NOT)
H A Dpvr_device_info.c113 #define FEATURE_MAPPING(fw_feature, feature) \
115 .flag_offset = offsetof(struct pvr_device, features.has_##feature), \
119 #define FEATURE_MAPPING_VALUE(fw_feature, feature) \
121 .flag_offset = offsetof(struct pvr_device, features.has_##feature), \
122 .value_offset = offsetof(struct pvr_device, features.feature) \
210 * @feature_param_size: Size of feature parameters, in u64s.
H A Dpvr_stream.c16 if (stream_def->feature == PVR_FEATURE_NONE)
19 if (!(stream_def->feature & PVR_FEATURE_NOT) &&
20 pvr_device_has_feature(pvr_dev, stream_def->feature)) {
24 if ((stream_def->feature & PVR_FEATURE_NOT) &&
25 !pvr_device_has_feature(pvr_dev, stream_def->feature & ~PVR_FEATURE_NOT)) {
/linux-master/arch/s390/include/asm/
H A Dalternative.h103 #define alternative_input(oldinstr, newinstr, feature, input...) \
104 asm_inline volatile (ALTERNATIVE(oldinstr, newinstr, feature) \
/linux-master/drivers/gpu/drm/renesas/rcar-du/
H A Drcar_du_drv.h129 unsigned int feature)
131 return rcdu->info->features & feature;
128 rcar_du_has(struct rcar_du_device *rcdu, unsigned int feature) argument
/linux-master/drivers/dma/
H A Dfsldma.h125 u32 feature; /* The same as DMA channels */ member in struct:fsldma_device
129 /* Define macros for fsldma_chan->feature property */
176 u32 feature; member in struct:fsldma_chan
248 (((fsl_dma)->feature & FSL_DMA_BIG_ENDIAN) ? \
252 (((fsl_dma)->feature & FSL_DMA_BIG_ENDIAN) ? \
257 (((fsl_chan)->feature & FSL_DMA_BIG_ENDIAN) ? \
261 (((fsl_chan)->feature & FSL_DMA_BIG_ENDIAN) ? \
H A Dfsldma.c105 snoop_bits = ((chan->feature & FSL_DMA_IP_MASK) == FSL_DMA_IP_85XX)
115 snoop_bits = ((chan->feature & FSL_DMA_IP_MASK) == FSL_DMA_IP_85XX)
125 snoop_bits = ((chan->feature & FSL_DMA_IP_MASK) == FSL_DMA_IP_83XX)
134 snoop_bits = ((chan->feature & FSL_DMA_IP_MASK) == FSL_DMA_IP_83XX)
151 switch (chan->feature & FSL_DMA_IP_MASK) {
190 if (chan->feature & FSL_DMA_CHAN_PAUSE_EXT) {
197 if (chan->feature & FSL_DMA_CHAN_START_EXT) {
220 if ((chan->feature & FSL_DMA_IP_MASK) == FSL_DMA_IP_85XX) {
340 * The DMA Request Count feature should be used in addition to this feature
1106 fsl_dma_chan_probe(struct fsldma_device *fdev, struct device_node *node, u32 feature, const char *compatible) argument
[all...]
/linux-master/tools/perf/
H A DMakefile.config121 # Set per-feature check compilation flags
286 # '-lpythonX.Y' flag unless '--embed' is also passed. The feature check for
339 # As we may retry some feature detection here, see the disassembler-four-args case, for instance
341 include $(srctree)/tools/build/Makefile.feature
346 ifeq ($(feature-stackprotector-all), 1)
351 ifeq ($(feature-fortify-source), 1)
381 ifeq ($(feature-pthread-attr-setaffinity-np), 1)
385 ifeq ($(feature-pthread-barrier), 1)
391 ifeq ($(feature-bionic), 1)
400 ifeq ($(feature
[all...]
/linux-master/drivers/fpga/
H A Ddfl-fme-pr.c167 * @feature: sub feature info
174 struct dfl_feature *feature)
180 if (!feature->ioaddr)
183 mgr_pdata.ioaddr = feature->ioaddr;
370 struct dfl_feature *feature)
392 mgr = dfl_fme_create_mgr(pdata, feature);
440 struct dfl_feature *feature)
453 struct dfl_feature *feature,
173 dfl_fme_create_mgr(struct dfl_feature_platform_data *pdata, struct dfl_feature *feature) argument
369 pr_mgmt_init(struct platform_device *pdev, struct dfl_feature *feature) argument
439 pr_mgmt_uinit(struct platform_device *pdev, struct dfl_feature *feature) argument
452 fme_pr_ioctl(struct platform_device *pdev, struct dfl_feature *feature, unsigned int cmd, unsigned long arg) argument
H A Ddfl-afu-error.c196 * sysfs entries are visible only if related private feature is
212 struct dfl_feature *feature)
220 struct dfl_feature *feature)
226 port_err_ioctl(struct platform_device *pdev, struct dfl_feature *feature, argument
231 return dfl_feature_ioctl_get_num_irqs(pdev, feature, arg);
233 return dfl_feature_ioctl_set_irq(pdev, feature, arg);
211 port_err_init(struct platform_device *pdev, struct dfl_feature *feature) argument
219 port_err_uinit(struct platform_device *pdev, struct dfl_feature *feature) argument
/linux-master/scripts/
H A Dget_feat.pl34 'feature=s' => \$feat,
209 # Output feature(s) for a given architecture
271 # list feature(s) for a given architecture
274 print "#\n# Kernel feature support matrix of the '$arch' architecture:\n#\n";
296 # Output a feature on all architectures
505 # Parses all feature files located at $prefix dir
549 [--feature=<feature>|--feat=<feature>] <COMAND> [<ARGUMENT>]
560 is affected by --arch or --feat/--feature flag
[all...]
/linux-master/tools/arch/x86/intel_sdsi/
H A Dintel_sdsi.c326 static void get_feature(uint32_t encoding, char feature[5]) argument
330 feature[4] = '\0';
331 feature[3] = name[0];
332 feature[2] = name[1];
333 feature[1] = name[2];
334 feature[0] = name[3];
353 fprintf(stderr, "SDSi feature is present but not enabled.\n");
417 char feature[FEAT_LEN]; local
419 get_feature(bec[count].encoding, feature);
420 printf(" %s: %d\n", feature, be
501 char feature[FEAT_LEN]; local
[all...]
/linux-master/arch/powerpc/kernel/
H A Dvdso.c260 VDSO_DO_FIXUPS(feature, cur_cpu_spec->cpu_features, 64, ftr_fixup);
261 VDSO_DO_FIXUPS(feature, cur_cpu_spec->mmu_features, 64, mmu_ftr_fixup);
262 VDSO_DO_FIXUPS(feature, powerpc_firmware_features, 64, fw_ftr_fixup);
267 VDSO_DO_FIXUPS(feature, cur_cpu_spec->cpu_features, 32, ftr_fixup);
268 VDSO_DO_FIXUPS(feature, cur_cpu_spec->mmu_features, 32, mmu_ftr_fixup);
270 VDSO_DO_FIXUPS(feature, powerpc_firmware_features, 32, fw_ftr_fixup);
/linux-master/drivers/gpu/drm/etnaviv/
H A Detnaviv_perfmon.c35 unsigned int feature; member in struct:etnaviv_pm_domain_meta
446 .feature = chipFeatures_PIPE_3D,
451 .feature = chipFeatures_PIPE_2D,
456 .feature = chipFeatures_PIPE_VG,
469 if (gpu->identity.features & meta->feature)
485 if (!(gpu->identity.features & meta->feature))
/linux-master/arch/mips/include/asm/octeon/
H A Docteon-feature.h99 * Returns: Non-zero if the feature exists. Zero if the feature does not exist.
107 * Determine if the current Octeon supports a specific feature. These
111 * @feature: Feature to check for. This should always be a constant so the
114 * Returns Non zero if the feature exists. Zero if the feature does not
117 static inline bool octeon_has_feature(enum octeon_feature feature) argument
119 switch (feature) {
/linux-master/drivers/ata/
H A Dsata_promise.h95 buf[i++] = tf->feature;
119 buf[i++] = tf->feature;
/linux-master/net/tls/
H A Dtls_toe.c65 if (dev->feature && dev->feature(dev)) {
/linux-master/tools/tracing/latency/
H A DMakefile61 include $(srctree)/tools/build/Makefile.feature
92 $(Q)rm -rf feature

Completed in 205 milliseconds

1234567891011>>