Home
last modified time | relevance | path

Searched refs:effect (Results 1 – 200 of 281) sorted by relevance

12

/linux-4.1.27/drivers/input/joystick/iforce/
Diforce-ff.c230 struct ff_effect *effect) in need_magnitude_modifier() argument
232 if (effect->type != FF_CONSTANT) { in need_magnitude_modifier()
238 return old->u.constant.level != effect->u.constant.level; in need_magnitude_modifier()
246 struct ff_effect *effect) in need_envelope_modifier() argument
248 switch (effect->type) { in need_envelope_modifier()
250 if (old->u.constant.envelope.attack_length != effect->u.constant.envelope.attack_length in need_envelope_modifier()
251 || old->u.constant.envelope.attack_level != effect->u.constant.envelope.attack_level in need_envelope_modifier()
252 || old->u.constant.envelope.fade_length != effect->u.constant.envelope.fade_length in need_envelope_modifier()
253 || old->u.constant.envelope.fade_level != effect->u.constant.envelope.fade_level) in need_envelope_modifier()
258 if (old->u.periodic.envelope.attack_length != effect->u.periodic.envelope.attack_length in need_envelope_modifier()
[all …]
Diforce-main.c130 static int iforce_upload_effect(struct input_dev *dev, struct ff_effect *effect, struct ff_effect *… in iforce_upload_effect() argument
133 struct iforce_core_effect *core_effect = &iforce->core_effects[effect->id]; in iforce_upload_effect()
145 switch (effect->type) { in iforce_upload_effect()
148 ret = iforce_upload_periodic(iforce, effect, old); in iforce_upload_effect()
152 ret = iforce_upload_constant(iforce, effect, old); in iforce_upload_effect()
157 ret = iforce_upload_condition(iforce, effect, old); in iforce_upload_effect()
/linux-4.1.27/drivers/input/
Dff-memless.c51 struct ff_effect *effect; member
67 struct ff_effect *effect);
70 static const struct ff_envelope *get_envelope(const struct ff_effect *effect) in get_envelope() argument
74 switch (effect->type) { in get_envelope()
76 return &effect->u.periodic.envelope; in get_envelope()
79 return &effect->u.constant.envelope; in get_envelope()
91 const struct ff_envelope *envelope = get_envelope(state->effect); in calculate_next_time()
102 if (state->effect->replay.length) { in calculate_next_time()
167 struct ff_effect *effect = state->effect; in apply_envelope() local
183 } else if (envelope->fade_length && effect->replay.length && in apply_envelope()
[all …]
Dff-core.c63 static int compat_effect(struct ff_device *ff, struct ff_effect *effect) in compat_effect() argument
67 switch (effect->type) { in compat_effect()
76 magnitude = effect->u.rumble.strong_magnitude / 3 + in compat_effect()
77 effect->u.rumble.weak_magnitude / 6; in compat_effect()
79 effect->type = FF_PERIODIC; in compat_effect()
80 effect->u.periodic.waveform = FF_SINE; in compat_effect()
81 effect->u.periodic.period = 50; in compat_effect()
82 effect->u.periodic.magnitude = max(magnitude, 0x7fff); in compat_effect()
83 effect->u.periodic.offset = 0; in compat_effect()
84 effect->u.periodic.phase = 0; in compat_effect()
[all …]
Dinput-compat.c66 struct ff_effect *effect) in input_ff_effect_from_user() argument
79 compat_effect = (struct ff_effect_compat *)effect; in input_ff_effect_from_user()
87 effect->u.periodic.custom_data = in input_ff_effect_from_user()
93 if (copy_from_user(effect, buffer, sizeof(struct ff_effect))) in input_ff_effect_from_user()
121 struct ff_effect *effect) in input_ff_effect_from_user() argument
126 if (copy_from_user(effect, buffer, sizeof(struct ff_effect))) in input_ff_effect_from_user()
Dinput-compat.h90 struct ff_effect *effect);
Devdev.c862 struct ff_effect effect; in evdev_do_ioctl() local
981 if (input_ff_effect_from_user(p, size, &effect)) in evdev_do_ioctl()
984 error = input_ff_upload(dev, &effect, file); in evdev_do_ioctl()
988 if (put_user(effect.id, &(((struct ff_effect __user *)p)->id))) in evdev_do_ioctl()
/linux-4.1.27/drivers/hid/usbhid/
Dhid-pidff.c286 struct ff_effect *effect) in pidff_set_constant_force_report() argument
291 effect->u.constant.level); in pidff_set_constant_force_report()
300 static int pidff_needs_set_constant(struct ff_effect *effect, in pidff_needs_set_constant() argument
303 return effect->u.constant.level != old->u.constant.level; in pidff_needs_set_constant()
310 struct ff_effect *effect) in pidff_set_effect_report() argument
316 pidff->set_effect[PID_DURATION].value[0] = effect->replay.length; in pidff_set_effect_report()
317 pidff->set_effect[PID_TRIGGER_BUTTON].value[0] = effect->trigger.button; in pidff_set_effect_report()
319 effect->trigger.interval; in pidff_set_effect_report()
324 pidff_rescale(effect->direction, 0xffff, in pidff_set_effect_report()
326 pidff->set_effect[PID_START_DELAY].value[0] = effect->replay.delay; in pidff_set_effect_report()
[all …]
/linux-4.1.27/sound/synth/emux/
Demux_effect.c102 short effect; in effect_set_byte() local
105 effect = fx->val[type]; in effect_set_byte()
108 effect += *(char*)valp; in effect_set_byte()
110 effect += *valp; in effect_set_byte()
112 if (effect < parm_defs[type].low) in effect_set_byte()
113 effect = parm_defs[type].low; in effect_set_byte()
114 else if (effect > parm_defs[type].high) in effect_set_byte()
115 effect = parm_defs[type].high; in effect_set_byte()
116 *valp = (unsigned char)effect; in effect_set_byte()
123 int effect; in effect_set_word() local
[all …]
Demux_nrpn.c32 int effect; member
60 snd_emux_send_effect(port, chan, table[i].effect, in send_converted_effect()
/linux-4.1.27/Documentation/input/
Dff.txt95 int ioctl(int file_descriptor, int request, struct ff_effect *effect);
99 "effect" points to a structure describing the effect to upload. The effect is
101 The content of effect may be modified. In particular, its field "id" is set
103 some operations (removing an effect, controlling the playback).
105 allocate a new effect.
113 3.3 Removing an effect from the device
115 int ioctl(int fd, EVIOCRMFF, effect.id);
118 stops the effect if it was playing.
129 struct ff_effect effect;
136 play.code = effect.id;
[all …]
Diforce-protocol.txt49 01 Bit 8 is set if the effect is playing. Bits 0 to 7 are the effect id.
56 ** Force effect **
72 Bits 4-7: Val 2 = effect along one axis. Byte 05 indicates direction
77 Val x+1 = Button x triggers the effect
80 03-04 Duration of effect (little endian encoding, in ms)
82 05 Direction of effect, if applicable. Else, see 02 for value to assign.
92 0c-0d Delay before execution of effect (little endian encoding, in ms)
186 **** Query effect ****
188 Send effect type.
242 3. Play the effect, and watch what happens on the spy screen.
[all …]
Dxpad.txt32 dpad_to_buttons has no effect for known pads. A erroneous commit message
/linux-4.1.27/drivers/hid/
Dhid-lgff.c69 static int hid_lgff_play(struct input_dev *dev, void *data, struct ff_effect *effect) in hid_lgff_play() argument
79 switch (effect->type) { in hid_lgff_play()
81 x = effect->u.ramp.start_level + 0x7f; /* 0x7f is center */ in hid_lgff_play()
82 y = effect->u.ramp.end_level + 0x7f; in hid_lgff_play()
94 right = effect->u.rumble.strong_magnitude; in hid_lgff_play()
95 left = effect->u.rumble.weak_magnitude; in hid_lgff_play()
Dhid-tmff.c84 struct ff_effect *effect) in tmff_play() argument
92 switch (effect->type) { in tmff_play()
94 x = tmff_scale_s8(effect->u.ramp.start_level, in tmff_play()
97 y = tmff_scale_s8(effect->u.ramp.end_level, in tmff_play()
108 left = tmff_scale_u16(effect->u.rumble.weak_magnitude, in tmff_play()
111 right = tmff_scale_u16(effect->u.rumble.strong_magnitude, in tmff_play()
Dhid-lg3ff.c61 struct ff_effect *effect) in hid_lg3ff_play() argument
75 switch (effect->type) { in hid_lg3ff_play()
81 x = effect->u.ramp.start_level; in hid_lg3ff_play()
82 y = effect->u.ramp.end_level; in hid_lg3ff_play()
Dhid-lg2ff.c35 struct ff_effect *effect) in play_effect() argument
41 strong = effect->u.rumble.strong_magnitude; in play_effect()
42 weak = effect->u.rumble.weak_magnitude; in play_effect()
Dhid-zpff.c38 struct ff_effect *effect) in zpff_play() argument
50 left = effect->u.rumble.strong_magnitude; in zpff_play()
51 right = effect->u.rumble.weak_magnitude; in zpff_play()
Dhid-betopff.c41 struct ff_effect *effect) in hid_betopff_play() argument
47 left = effect->u.rumble.strong_magnitude; in hid_betopff_play()
48 right = effect->u.rumble.weak_magnitude; in hid_betopff_play()
Dhid-emsff.c35 struct ff_effect *effect) in emsff_play() argument
41 weak = effect->u.rumble.weak_magnitude; in emsff_play()
42 strong = effect->u.rumble.strong_magnitude; in emsff_play()
Dhid-holtekff.c107 struct ff_effect *effect) in holtekff_play() argument
116 left = effect->u.rumble.strong_magnitude; in holtekff_play()
117 right = effect->u.rumble.weak_magnitude; in holtekff_play()
Dhid-sjoy.c42 struct ff_effect *effect) in hid_sjoyff_play() argument
48 left = effect->u.rumble.strong_magnitude; in hid_sjoyff_play()
49 right = effect->u.rumble.weak_magnitude; in hid_sjoyff_play()
Dhid-axff.c43 static int axff_play(struct input_dev *dev, void *data, struct ff_effect *effect) in axff_play() argument
52 left = effect->u.rumble.strong_magnitude; in axff_play()
53 right = effect->u.rumble.weak_magnitude; in axff_play()
Dhid-gaff.c43 struct ff_effect *effect) in hid_gaff_play() argument
49 left = effect->u.rumble.strong_magnitude; in hid_gaff_play()
50 right = effect->u.rumble.weak_magnitude; in hid_gaff_play()
Dhid-dr.c44 struct ff_effect *effect) in drff_play() argument
50 strong = effect->u.rumble.strong_magnitude; in drff_play()
51 weak = effect->u.rumble.weak_magnitude; in drff_play()
Dhid-pl.c60 struct ff_effect *effect) in hid_plff_play() argument
66 left = effect->u.rumble.strong_magnitude; in hid_plff_play()
67 right = effect->u.rumble.weak_magnitude; in hid_plff_play()
Dhid-sony.c1648 struct ff_effect *effect) in sony_play_effect() argument
1653 if (effect->type != FF_RUMBLE) in sony_play_effect()
1656 sc->left = effect->u.rumble.strong_magnitude / 256; in sony_play_effect()
1657 sc->right = effect->u.rumble.weak_magnitude / 256; in sony_play_effect()
Dhid-lg4ff.c297 static int hid_lg4ff_play(struct input_dev *dev, void *data, struct ff_effect *effect) in hid_lg4ff_play() argument
307 switch (effect->type) { in hid_lg4ff_play()
309 x = effect->u.ramp.start_level + 0x80; /* 0x80 is no force */ in hid_lg4ff_play()
/linux-4.1.27/drivers/input/misc/
Darizona-haptics.c111 struct ff_effect *effect) in arizona_haptics_play() argument
121 if (effect->u.rumble.strong_magnitude) { in arizona_haptics_play()
125 effect->u.rumble.strong_magnitude >> 9; in arizona_haptics_play()
126 if (effect->direction < 0x8000) in arizona_haptics_play()
130 effect->u.rumble.strong_magnitude >> 8; in arizona_haptics_play()
Duinput.c195 struct ff_effect *effect, in uinput_dev_upload_effect() argument
208 if (effect->type == FF_PERIODIC && in uinput_dev_upload_effect()
209 effect->u.periodic.waveform == FF_CUSTOM) in uinput_dev_upload_effect()
213 request.u.upload.effect = effect; in uinput_dev_upload_effect()
584 struct ff_effect_compat effect; member
602 memcpy(&ff_up_compat.effect, &ff_up->effect, in uinput_ff_upload_to_user()
631 memcpy(&ff_up->effect, &ff_up_compat.effect, in uinput_ff_upload_from_user()
803 !req->u.upload.effect) { in uinput_ioctl_handler()
809 ff_up.effect = *req->u.upload.effect; in uinput_ioctl_handler()
846 !req->u.upload.effect) { in uinput_ioctl_handler()
Dtwl4030-vibra.c137 struct ff_effect *effect) in vibra_play() argument
141 info->speed = effect->u.rumble.strong_magnitude >> 8; in vibra_play()
143 info->speed = effect->u.rumble.weak_magnitude >> 9; in vibra_play()
144 info->direction = effect->direction < EFFECT_DIR_180_DEG ? 0 : 1; in vibra_play()
Dpm8xxx-vibrator.c131 struct ff_effect *effect) in pm8xxx_vib_play_effect() argument
135 vib->speed = effect->u.rumble.strong_magnitude >> 8; in pm8xxx_vib_play_effect()
137 vib->speed = effect->u.rumble.weak_magnitude >> 9; in pm8xxx_vib_play_effect()
Ddrv2667.c235 struct ff_effect *effect) in drv2667_haptics_play() argument
239 if (effect->u.rumble.strong_magnitude > 0) in drv2667_haptics_play()
240 haptics->magnitude = effect->u.rumble.strong_magnitude; in drv2667_haptics_play()
241 else if (effect->u.rumble.weak_magnitude > 0) in drv2667_haptics_play()
242 haptics->magnitude = effect->u.rumble.weak_magnitude; in drv2667_haptics_play()
Dregulator-haptic.c98 struct ff_effect *effect) in regulator_haptic_play_effect() argument
102 haptic->magnitude = effect->u.rumble.strong_magnitude; in regulator_haptic_play_effect()
104 haptic->magnitude = effect->u.rumble.weak_magnitude; in regulator_haptic_play_effect()
Dtwl6040-vibra.c200 struct ff_effect *effect) in vibra_play() argument
212 info->weak_speed = effect->u.rumble.weak_magnitude; in vibra_play()
213 info->strong_speed = effect->u.rumble.strong_magnitude; in vibra_play()
214 info->direction = effect->direction < EFFECT_DIR_180_DEG ? 1 : -1; in vibra_play()
Dmax77693-haptic.c194 struct ff_effect *effect) in max77693_haptic_play_effect() argument
199 haptic->magnitude = effect->u.rumble.strong_magnitude; in max77693_haptic_play_effect()
201 haptic->magnitude = effect->u.rumble.weak_magnitude; in max77693_haptic_play_effect()
Dmax77843-haptic.c191 struct ff_effect *effect) in max77843_haptic_play_effect() argument
196 haptic->magnitude = effect->u.rumble.strong_magnitude; in max77843_haptic_play_effect()
198 haptic->magnitude = effect->u.rumble.weak_magnitude; in max77843_haptic_play_effect()
Ddrv260x.c283 struct ff_effect *effect) in drv260x_haptics_play() argument
289 if (effect->u.rumble.strong_magnitude > 0) in drv260x_haptics_play()
290 haptics->magnitude = effect->u.rumble.strong_magnitude; in drv260x_haptics_play()
291 else if (effect->u.rumble.weak_magnitude > 0) in drv260x_haptics_play()
292 haptics->magnitude = effect->u.rumble.weak_magnitude; in drv260x_haptics_play()
Dmax8997_haptic.c232 struct ff_effect *effect) in max8997_haptic_play_effect() argument
236 chip->level = effect->u.rumble.strong_magnitude; in max8997_haptic_play_effect()
238 chip->level = effect->u.rumble.weak_magnitude; in max8997_haptic_play_effect()
/linux-4.1.27/sound/isa/sb/
Demu8000.c681 int effect = emu->chorus_mode; in snd_emu8000_update_chorus_mode() local
682 if (effect < 0 || effect >= SNDRV_EMU8000_CHORUS_NUMBERS || in snd_emu8000_update_chorus_mode()
683 (effect >= SNDRV_EMU8000_CHORUS_PREDEFINED && !chorus_defined[effect])) in snd_emu8000_update_chorus_mode()
685 EMU8000_INIT3_WRITE(emu, 0x09, chorus_parm[effect].feedback); in snd_emu8000_update_chorus_mode()
686 EMU8000_INIT3_WRITE(emu, 0x0c, chorus_parm[effect].delay_offset); in snd_emu8000_update_chorus_mode()
687 EMU8000_INIT4_WRITE(emu, 0x03, chorus_parm[effect].lfo_depth); in snd_emu8000_update_chorus_mode()
688 EMU8000_HWCF4_WRITE(emu, chorus_parm[effect].delay); in snd_emu8000_update_chorus_mode()
689 EMU8000_HWCF5_WRITE(emu, chorus_parm[effect].lfo_freq); in snd_emu8000_update_chorus_mode()
809 int effect = emu->reverb_mode; in snd_emu8000_update_reverb_mode() local
812 if (effect < 0 || effect >= SNDRV_EMU8000_REVERB_NUMBERS || in snd_emu8000_update_reverb_mode()
[all …]
/linux-4.1.27/drivers/media/platform/exynos4-is/
Dfimc-core.c485 struct fimc_effect *effect = &ctx->effect; in fimc_set_color_effect() local
489 effect->type = FIMC_REG_CIIMGEFF_FIN_BYPASS; in fimc_set_color_effect()
492 effect->type = FIMC_REG_CIIMGEFF_FIN_ARBITRARY; in fimc_set_color_effect()
493 effect->pat_cb = 128; in fimc_set_color_effect()
494 effect->pat_cr = 128; in fimc_set_color_effect()
497 effect->type = FIMC_REG_CIIMGEFF_FIN_ARBITRARY; in fimc_set_color_effect()
498 effect->pat_cb = 115; in fimc_set_color_effect()
499 effect->pat_cr = 145; in fimc_set_color_effect()
502 effect->type = FIMC_REG_CIIMGEFF_FIN_NEGATIVE; in fimc_set_color_effect()
505 effect->type = FIMC_REG_CIIMGEFF_FIN_EMBOSSING; in fimc_set_color_effect()
[all …]
Dfimc-reg.c377 struct fimc_effect *effect = &ctx->effect; in fimc_hw_set_effect() local
380 if (effect->type != FIMC_REG_CIIMGEFF_FIN_BYPASS) { in fimc_hw_set_effect()
383 cfg |= effect->type; in fimc_hw_set_effect()
384 if (effect->type == FIMC_REG_CIIMGEFF_FIN_ARBITRARY) in fimc_hw_set_effect()
385 cfg |= (effect->pat_cb << 13) | effect->pat_cr; in fimc_hw_set_effect()
Dfimc-is-param.h693 struct param_isp_imageeffect effect; member
713 struct param_scaler_imageeffect effect; member
743 struct param_scaler_imageeffect effect; member
Dfimc-is-param.c94 __hw_param_copy(&par->isp.effect, &cfg->isp.effect); in __fimc_is_hw_update_param()
344 isp->effect.cmd = cmd; in __is_set_isp_effect()
345 isp->effect.err = ISP_IMAGE_EFFECT_ERROR_NONE; in __is_set_isp_effect()
Dfimc-core.h497 struct fimc_effect effect; member
/linux-4.1.27/Documentation/ABI/testing/
Dsysfs-driver-toshiba_acpi15 a reboot for changes to take effect.
113 take effect.
157 take effect.
169 take effect.
180 take effect.
Dsysfs-profiling8 You can get the same effect running:
Dsysfs-bus-iio-frequency-adf435019 The value written has no effect until out_altvoltageY_frequency
Dsysfs-bus-iio-frequency-ad952328 Writing this file has the effect as driving the external
Dsysfs-devices-power219 This attribute has no effect on system-wide suspend/resume and
244 This attribute has no effect on runtime suspend and resume of
259 This attribute has no effect on system-wide suspend/resume and
275 This attribute has no effect on system-wide suspend/resume and
Dima_policy12 then closing the file. The new policy takes effect after
Dsysfs-class-devfreq64 userspace governor is in effect.
Dsysfs-firmware-acpi165 None of these counters has an effect on the function
Dsysfs-bus-pci76 must be reloaded for the new setting to take effect.
/linux-4.1.27/include/linux/
Duinput.h55 struct ff_effect *effect; member
Dinput.h502 int (*upload)(struct input_dev *dev, struct ff_effect *effect,
528 int input_ff_upload(struct input_dev *dev, struct ff_effect *effect, struct file *file);
/linux-4.1.27/drivers/staging/unisys/Documentation/ABI/
Dsysfs-platform-visorchipset7 is encountered during installation. This field has no effect
16 installation progress screen. This field has no effect if not in
27 the previous guest boot) has no effect.
/linux-4.1.27/fs/exofs/
DKconfig.ore6 # selected here, and we default to "ON". So in effect it is like been
/linux-4.1.27/Documentation/devicetree/bindings/regulator/
Dmax8997-regulator.txt45 - max8997,pmic-ignore-gpiodvs-side-effect: When GPIO-DVS mode is used for
47 that of another buck, which is the side effect of the change (set_voltage).
102 max8997,pmic-ignore-gpiodvs-side-effect;
Dmax77802.txt47 are: BUCKs 2-4 and LDOs 1-35. Also, it only takes effect if the regulator has
/linux-4.1.27/scripts/coccinelle/tests/
Ddoubletest.cocci3 //# effect.
Ddoublebitand.cocci3 //# effect. Another source of false positives is when a neutral value
/linux-4.1.27/include/uapi/linux/
Duinput.h46 struct ff_effect effect; member
/linux-4.1.27/Documentation/cpuidle/
Dsysfs.txt87 The behavior and the effect of the disable variable depends on the
92 state still is disabled, then this has no effect.
/linux-4.1.27/Documentation/
Ddebugging-modules.txt21 that the module be loaded -- it won't have any effect if that module
Dmemory-barriers.txt350 to have any effect on loads.
370 only; it is not required to have any effect on stores, independent loads
404 have any effect on stores.
490 any direct effect on another CPU or any other hardware in the system. The
491 indirect effect will be the order in which the second CPU sees the effects
605 This will not have the desired effect because there is no actual data
1194 LOAD with immediate effect : : +-------+
1528 This effect could also be achieved using barrier(), but ACCESS_ONCE()
1616 has no effect when its argument is already marked volatile.
1618 Please note that these compiler barriers have no direct effect on the CPU,
[all …]
Dcachetlb.txt8 describes its intended purpose, and what side effect is expected
14 definition such that the side effect for a particular interface occurs
Dparport.txt74 kernel boot parameters to get the same effect. Add something like the
Dprintk-formats.txt47 consideration the effect of compiler optimisations which may occur
Dassoc_array.txt92 applied to effect the changes without risking ENOMEM. This retains the
346 very early on before any variation due to the length would have an effect on
DIRQ-domain.txt14 handlers as irqchips, i.e. in effect cascading interrupt controllers.
Drtc.txt87 of this effect.
Ddynamic-debug-howto.txt252 boot time, without effect, but will be reprocessed when module is
Dnommu-mmap.txt120 this has an effect on fragmentation.
Dmedia-framework.txt312 Link configuration must not have any side effect on other links. If an enabled
/linux-4.1.27/sound/isa/gus/
Dgus_main.c138 int effect, in snd_gus_create() argument
218 gus->gf1.effect = effect ? 1 : 0; in snd_gus_create()
Dinterwave.c73 static int effect[SNDRV_CARDS]; variable
113 module_param_array(effect, int, NULL, 0444);
114 MODULE_PARM_DESC(effect, "Effects enable for InterWave driver.");
661 pcm_channels[dev], effect[dev], &gus)) < 0) in snd_interwave_probe()
/linux-4.1.27/Documentation/video4linux/
Domap3isp.txt53 In general, the settings given to the OMAP 3 ISP take effect at the beginning
208 done before streaming, it will take effect as soon as the pipeline starts to
209 stream. If the pipeline is already streaming, it will take effect as soon as
240 As the configuration doesn't take effect synchronously to the request, the
DREADME.ir58 device, which had the effect that XFree86 recognised some of the keys
/linux-4.1.27/arch/metag/kernel/
Dhead.S54 ! the boot thread might have performed prior to coherency taking effect.
/linux-4.1.27/Documentation/virtual/kvm/devices/
Darm-vgic.txt52 GICv2 specs. Getting or setting such a register has the same effect as
74 same effect as reading or writing the register on the actual hardware.
/linux-4.1.27/include/sound/
Demux_synth.h151 struct snd_emux_effect_table *effect; member
Dgus.h300 effect:1; /* use effect voices */ member
610 int effect,
/linux-4.1.27/Documentation/xtensa/
Datomctl.txt2 This register determines the effect of using a S32C1I instruction
/linux-4.1.27/Documentation/filesystems/
Docfs2.txt74 Setting it to 0 will have the same effect as leaving
95 option will have no effect.
Dlocks.txt43 exists, and neither will have any effect on the other.
Dtmpfs.txt109 memory allocation policy mode flags and their effect on memory policy.
134 These options do not have any effect on remount. You can change these
Dubifs.txt87 if the flash media is highly reliable. The effect
Dext3.txt58 Setting it to 0 will have the same effect as leaving
Dmandatory-locking.txt143 that has any mandatory locks in effect will be rejected with the error status
Dlogfs.txt137 so has no effect on existing data, but new data will be stored
Dfuse.txt300 filesystem, since SIGSTOP can be used to get a similar effect.
/linux-4.1.27/Documentation/vm/
Dremap_file_pages.txt25 One side effect of emulation (apart from performance) is that user can hit
Dslub.txt128 slub_min_order specifies a minim order of slabs. A similar effect like
/linux-4.1.27/drivers/media/platform/s3c-camif/
Dcamif-regs.c60 void camif_hw_set_effect(struct camif_dev *camif, unsigned int effect, in camif_hw_set_effect() argument
76 if (colorfx[i].id == effect) in camif_hw_set_effect()
88 if (effect == V4L2_COLORFX_NONE) in camif_hw_set_effect()
Dcamif-regs.h257 void camif_hw_set_effect(struct camif_dev *camif, unsigned int effect,
/linux-4.1.27/Documentation/arm/nwfpe/
DNOTES15 This is a side effect of the stfe instruction. The double in f4 had to be
/linux-4.1.27/Documentation/scheduler/
Dsched-nice-design.txt95 the new scheduler makes nice(1) have the same CPU utilization effect on
108 side-effect of the recalibrated dynamic range of nice levels.
/linux-4.1.27/Documentation/usb/
Dpersist.txt36 devices. The effect is exactly the same as if the device really had
44 interrupts a power session will have the same effect. For example,
82 the kernel continues to use the same device structure. In effect, the
Dgadget_multi.txt86 functionality. As an effect provided INFs won't work since they have
Dpower-management.txt115 autosuspended. In effect, the kernel pretends the device is never
152 effect until the following suspend.)
565 As far as the effect on the device itself it is similar to what a device
/linux-4.1.27/drivers/input/joystick/
Dxpad.c782 static int xpad_play_effect(struct input_dev *dev, void *data, struct ff_effect *effect) in xpad_play_effect() argument
786 if (effect->type == FF_RUMBLE) { in xpad_play_effect()
787 __u16 strong = effect->u.rumble.strong_magnitude; in xpad_play_effect()
788 __u16 weak = effect->u.rumble.weak_magnitude; in xpad_play_effect()
Dgamecon.c266 struct ff_effect *effect) in gc_n64_play_effect() argument
274 if (effect->type == FF_RUMBLE) { in gc_n64_play_effect()
275 struct ff_rumble_effect *rumble = &effect->u.rumble; in gc_n64_play_effect()
/linux-4.1.27/drivers/gpu/drm/qxl/
Dqxl_dev.h682 uint8_t effect; member
709 uint8_t effect; member
Dqxl_draw.c90 drawable->effect = QXL_EFFECT_OPAQUE; in make_drawable()
/linux-4.1.27/Documentation/devicetree/bindings/pinctrl/
Dfsl,imx27-pinctrl.txt33 have any effect unless GPIO function is selected. A/B/C_IN are output
Dpinctrl-bindings.txt187 input-enable - enable input on pin (no effect on output)
188 input-disable - disable input on pin (no effect on output)
Dbrcm,bcm11351-pinctrl.txt42 effect on any properties that are omitted.
/linux-4.1.27/Documentation/networking/
Dcxacru.txt8 so it had no effect on the device configuration. Fixing it could have stopped
Dipvs-sysctl.txt197 If policy routing is in effect then it is possible that the route
201 If policy routing is not in effect then the recalculated route will
Dppp_generic.txt183 scheme has the effect that more fragments are given to higher-
255 this way an effect similar to Solaris' clone open is obtained,
304 deprecated since the same effect can be achieved by closing the
408 At present NPMODE_ERROR and NPMODE_QUEUE have the same effect as
Dray_cs.txt150 a card insertion to take effect.
Dixgb.txt179 The changes are made in three major ways, listed in order of greatest effect:
229 ### CORE settings (mostly for socket and UDP effect)
Dde4x5.txt139 more than one DECchip based card. As a side effect, I don't mess with
Ddccp.txt74 than one code has no effect (all subsequent service codes are ignored). The
Dixgbe.txt282 no default effect on the regular driver operation, and configuring DCB and
Dvortex.txt210 decrease in throughput for send(). There is no effect upon receive
/linux-4.1.27/fs/f2fs/
DKconfig7 addressing the fundamental issues in LFS, which are snowball effect
/linux-4.1.27/Documentation/thermal/
Dintel_powerclamp.txt81 effect. Threads are also bound to the CPU such that they cannot be
88 values. This effect can be better visualized using a Perf timechart.
242 this effect is minor, in that in most cases change to the target
/linux-4.1.27/arch/arm/mach-davinci/
DKconfig148 menu has an effect only in case of a successful UI card detection.
177 menu has an effect only in case of a successful UI card detection.
/linux-4.1.27/Documentation/hwmon/
Dpc8736026 Note that this parameter has no effect for the PC87360, PC87363 and PC87364
176 sampling rate), so the effect is attenuated, but still present.
Dw83627ehf153 by the driver, so a change might not have any effect.
/linux-4.1.27/Documentation/spi/
Dspi-lm70llp18 In effect, this driver turns the parallel port interface on the eval board
Dspi-summary395 only protocol effect, if the buffer length is zero);
490 will reverse the effect of spi_register_master().
/linux-4.1.27/Documentation/powerpc/
Dtransactional_memory.txt81 not be running in transactional state. The effect of syscalls will always
83 side-effect, read soon-to-be-aborted transactional data that should not remain
/linux-4.1.27/fs/reiserfs/
DKconfig40 effect on end users. If you are on the verge of sending in a bug
/linux-4.1.27/Documentation/ABI/stable/
Dfirewire-cdev61 Initiate various actions. Some take immediate effect, others
/linux-4.1.27/Documentation/i2c/
Ddev-interface116 Used only for SMBus transactions. This request only has an effect if the
118 doesn't have any effect.
/linux-4.1.27/Documentation/acpi/
Dvideo_extension.txt92 so this would lead to the same effect as case i) now.
/linux-4.1.27/arch/xtensa/lib/
Dstrncpy_user.S153 # the effect of adding 3 in .Lz3 code
/linux-4.1.27/Documentation/video4linux/bttv/
DREADME.quirks79 also has the side effect of not being able to take advantage of bus
DSound-FAQ101 out which effect the particular value has).
/linux-4.1.27/arch/powerpc/platforms/
DKconfig.cputype287 the icswx coprocessor instruction. It does not have any effect
329 effect on a non-spe cpu (it does, however add code to the kernel).
/linux-4.1.27/Documentation/frv/
Datomic-ops.txt19 potentially having a great effect on interrupt latency.
Dkernel-ABI.txt175 Setting condition flags as a side effect of an arithmetic or logical
/linux-4.1.27/Documentation/RCU/
Drcu.txt40 same effect, but require that the readers manipulate CPU-local
/linux-4.1.27/Documentation/sysctl/
Dvm.txt90 Changing this takes effect whenever an application requests memory.
244 so this parameter has no effect if used without kernelcore=.
374 may have. Memory map areas are used as a side-effect of calling
754 Changing this takes effect whenever an application requests memory.
794 left disabled as the caching effect is likely to be more important than
Dnet.txt196 socket's buffer. It will not take effect unless PF_UNIX flag is specified.
Dkernel.txt121 This variable has no effect and may be removed in future kernel
284 has the same effect as
/linux-4.1.27/drivers/firmware/
DKconfig72 image for the image update to take effect.
/linux-4.1.27/Documentation/s390/
DCommonIO74 ignored, there will be no effect on then. However, if such a device
Dkvm.txt36 the calling process. It does not have any user-visible effect other than a small
/linux-4.1.27/Documentation/trace/
Dtracepoints.txt17 "off" it has no effect, except for adding a tiny time penalty
Devents.txt255 effect) trace output. Only filters that reference just the common
363 in effect that can trigger it.
Dftrace-design.txt41 Keep in mind that the ABI that is in effect inside of the mcount function is
/linux-4.1.27/Documentation/sound/alsa/
DHD-Audio-Controls.txt76 and speaker outputs. As a side-effect, when this mode is set, the
DSB-Live-mixer.txt50 FX-bus - the EMU10K1 chip has an effect bus containing 16 accumulators.
DAudigy-mixer.txt36 FX-bus - the EMU10K2 chip has an effect bus containing 64 accumulators.
/linux-4.1.27/Documentation/timers/
DNO_HZ.txt42 attempting to turn off the scheduling clock interrupt will have no effect
222 parameter has no effect for kernels built with RCU_NOCB_CPU_ALL=y.
285 are significantly affected by this effect.
Dtimekeeping.txt168 is calibrated: as an effect when the frequency is geared down to half the
/linux-4.1.27/Documentation/ide/
DChangeLog.ide-tape.1995-200232 * on the same interface. This effect doesn't disturb
175 * in idetape_issue_packet_command (did effect
/linux-4.1.27/Documentation/sound/oss/
DREADME.modules42 The effect of this is that the sound driver and all necessary bits and
/linux-4.1.27/security/
DKconfig82 will have no effect.
/linux-4.1.27/tools/perf/Documentation/
Dperf-top.txt183 This has the effect of collecting the callers of each such
Dperf-record.txt235 overrides that and uses per-thread mmaps. A side-effect of that is that
Dperf-report.txt211 This has the effect of collecting the callers of each such
/linux-4.1.27/Documentation/ia64/
Dfsys.txt99 - PSR.be = cleared to zero (i.e., little-endian byte order is in effect)
231 PSR.ed Unchanged. Note: This bit could only have an effect if an fsys-mode
/linux-4.1.27/arch/arm/mm/
DKconfig853 so that the cache operation has the desired effect.
891 The only effect of this option is to make CACHE_L2X0 and
937 Under some condition the effect of cache sync operation on
943 This has the same effect as the cache sync operation: store buffer
/linux-4.1.27/Documentation/devicetree/bindings/mmc/
Dmmc.txt61 polarity is in effect.
/linux-4.1.27/Documentation/devicetree/bindings/iommu/
Diommu.txt83 parent shall take effect. Note that merely disabling a device tree node does
/linux-4.1.27/Documentation/video4linux/cx2341x/
Dfw-decoder-api.txt35 Note: this takes effect immediately, so if you want to wait for a PTS,
Dfw-encoder-api.txt136 Sets the encoding aspect ratio. Changes in the aspect ratio take effect
/linux-4.1.27/arch/cris/arch-v32/kernel/
Dhead.S58 ;; Note; 3 cycles is needed for a bank-select to take effect. Further;
/linux-4.1.27/Documentation/virtual/kvm/
Dtimekeeping.txt366 a guarantee. This can have the effect of bringing a system from a state where
421 External signals given to the processor may also have the effect of stopping
573 virtualization. In theory, the effect is random and should be universally
576 be the case. The effect of this has not been well studied.
Dmsr.txt44 Note that although MSRs are per-CPU entities, the effect of this
/linux-4.1.27/arch/arm/boot/dts/
Dexynos4210-trats.dts198 max8997,pmic-ignore-gpiodvs-side-effect;
/linux-4.1.27/Documentation/gpio/
Dsysfs.txt51 "unexport" ... Reverses the effect of exporting to userspace.
/linux-4.1.27/Documentation/acpi/apei/
Deinj.txt85 This file is used to set the first error parameter value. Its effect
/linux-4.1.27/Documentation/fb/
Dudlfb.txt18 does not require any acks - the effect is very low latency that
Duvesafb.txt116 has any effect only if the Video BIOS is VBE 3.0 compliant. Use it
Dfbcon.txt107 One side effect that may be useful is using a map value that exceeds
/linux-4.1.27/Documentation/driver-model/
Ddevres.txt165 layer) where interface function shouldn't have side effect on failure.
Dporting.txt16 negative effect on kernel drivers, and to allow a gradual transition
/linux-4.1.27/Documentation/isdn/
DsyncPPP.FAQ219 to not negotiate these options. Another 'side effect' is, that
/linux-4.1.27/fs/cifs/
DKconfig53 These additional statistics may have a minor effect on performance
/linux-4.1.27/arch/um/
DKconfig.net191 setup string. The effect of this transport on the UML is similar
/linux-4.1.27/net/ipv6/netfilter/
DKconfig257 which can effect how the packet is routed.
/linux-4.1.27/Documentation/hid/
Dhiddev.txt27 events into the input subsystem, but these have no effect on the hid
/linux-4.1.27/arch/alpha/
DKconfig608 the side effect of making the cycle counter unreliable as a timing
671 process accounting. The later effect is especially significant
/linux-4.1.27/Documentation/arm/pxa/
Dmfp.txt226 for implementation of the pin configuration to take effect for the actual
/linux-4.1.27/Documentation/wimax/
DREADME.i2400m146 parameter, once set, will take effect only when the device is
/linux-4.1.27/drivers/media/usb/pwc/
Dphilips.txt129 Finally: this parameters does not take effect UNTIL the first time you
/linux-4.1.27/Documentation/sound/alsa/soc/
Ddapm.txt44 internal codec components). All audio components that effect power are called
/linux-4.1.27/Documentation/scsi/
Dadvansys.txt178 For a loadable module the same effect can be achieved by setting
Dst.txt22 These parameters can be programmed to come into effect either when a
37 effect.
/linux-4.1.27/arch/x86/
DKconfig.debug239 while not having any side-effect on the IO port space.
/linux-4.1.27/arch/mn10300/
DKconfig221 This has no effect on userspace.
/linux-4.1.27/net/ipv4/netfilter/
DKconfig308 which can effect how the packet is routed.
/linux-4.1.27/Documentation/cpu-freq/
Dgovernors.txt168 effect on behavior at lower speeds/lower CPU loads.
/linux-4.1.27/Documentation/PCI/
DMSI-HOWTO.txt202 This function should be used to undo the effect of pci_enable_msi_range().
438 This function should be used to undo the effect of pci_enable_msix_range().
/linux-4.1.27/Documentation/serial/
Dtty.txt33 counts the number of active users of the ldisc at this instant. In effect it
Ddriver191 effect, and free any interrupt resources. It should not disable
/linux-4.1.27/Documentation/power/
Ddevices.txt62 have been put into low-power states (at runtime), the effect may be very similar
219 The device's runtime_auto flag has no effect on the handling of system-wide
437 some systems support multiple "run" states, and the mode in effect at
/linux-4.1.27/arch/arm/
DKconfig1302 The only effect of this option is to make the SMP-related
1727 A possible side effect is a slight increase in scheduling latency
1811 If ZBOOT_ROM is not enabled, this has no effect.
1824 If ZBOOT_ROM is not enabled, this has no effect.
/linux-4.1.27/Documentation/filesystems/cifs/
DREADME118 equivalent suid effect). For this utility to succeed the target path
414 this mount option will have no effect. Exporting cifs mounts
479 This has no effect if the server does not support
/linux-4.1.27/drivers/acpi/
DKconfig73 This option has no effect on /proc/acpi/ directories
/linux-4.1.27/Documentation/block/
Dcfq-iosched.txt220 dispatched. Note that this mode switching takes effect only for group
/linux-4.1.27/arch/ia64/
DKconfig459 This code also only takes effect if a memory hole of greater than
/linux-4.1.27/tools/perf/
Ddesign.txt170 particular counter allowing one to take the round-robin scheduling effect
/linux-4.1.27/sound/oss/
DCHANGELOG148 The side effect is that all 8 bit DMA channels (0,1,3) are populated in

12