Home
last modified time | relevance | path

Searched refs:mode_flags (Results 1 – 30 of 30) sorted by relevance

/linux-4.4.14/sound/pci/emu10k1/
Demu10k1_patch.c83 if (sp->v.mode_flags & (SNDRV_SFNT_SAMPLE_BIDIR_LOOP|SNDRV_SFNT_SAMPLE_REVERSE_LOOP)) in snd_emu10k1_sample_new()
87 if (sp->v.mode_flags & SNDRV_SFNT_SAMPLE_NO_BLANK) in snd_emu10k1_sample_new()
92 if (! (sp->v.mode_flags & SNDRV_SFNT_SAMPLE_8BITS)) in snd_emu10k1_sample_new()
107 if (! (sp->v.mode_flags & SNDRV_SFNT_SAMPLE_8BITS)) in snd_emu10k1_sample_new()
116 if (! (sp->v.mode_flags & SNDRV_SFNT_SAMPLE_8BITS)) in snd_emu10k1_sample_new()
130 if (sp->v.mode_flags & (SNDRV_SFNT_SAMPLE_BIDIR_LOOP|SNDRV_SFNT_SAMPLE_REVERSE_LOOP)) { in snd_emu10k1_sample_new()
132 if (! (sp->v.mode_flags & SNDRV_SFNT_SAMPLE_8BITS)) { in snd_emu10k1_sample_new()
150 if (sp->v.mode_flags & SNDRV_SFNT_SAMPLE_BIDIR_LOOP) { in snd_emu10k1_sample_new()
165 if (! (sp->v.mode_flags & SNDRV_SFNT_SAMPLE_8BITS)) in snd_emu10k1_sample_new()
178 if (sp->v.mode_flags & SNDRV_SFNT_SAMPLE_NO_BLANK) { in snd_emu10k1_sample_new()
[all …]
/linux-4.4.14/sound/isa/sb/
Demu8000_patch.c174 if (sp->v.mode_flags & (SNDRV_SFNT_SAMPLE_BIDIR_LOOP|SNDRV_SFNT_SAMPLE_REVERSE_LOOP)) in snd_emu8000_sample_new()
176 if (sp->v.mode_flags & SNDRV_SFNT_SAMPLE_NO_BLANK) in snd_emu8000_sample_new()
186 if (sp->v.mode_flags & SNDRV_SFNT_SAMPLE_8BITS) { in snd_emu8000_sample_new()
230 s = read_word(data, offset, sp->v.mode_flags); in snd_emu8000_sample_new()
240 (sp->v.mode_flags & (SNDRV_SFNT_SAMPLE_BIDIR_LOOP|SNDRV_SFNT_SAMPLE_REVERSE_LOOP))) in snd_emu8000_sample_new()
247 s = read_word(data, offset - k, sp->v.mode_flags); in snd_emu8000_sample_new()
250 if (sp->v.mode_flags & SNDRV_SFNT_SAMPLE_BIDIR_LOOP) { in snd_emu8000_sample_new()
261 if (sp->v.mode_flags & SNDRV_SFNT_SAMPLE_NO_BLANK) { in snd_emu8000_sample_new()
265 if (sp->v.mode_flags & SNDRV_SFNT_SAMPLE_SINGLESHOT) { in snd_emu8000_sample_new()
/linux-4.4.14/drivers/gpu/drm/
Ddrm_probe_helper.c138 int mode_flags = 0; in drm_helper_probe_single_connector_modes_merge_bits() local
225 mode_flags |= DRM_MODE_FLAG_INTERLACE; in drm_helper_probe_single_connector_modes_merge_bits()
227 mode_flags |= DRM_MODE_FLAG_DBLSCAN; in drm_helper_probe_single_connector_modes_merge_bits()
229 mode_flags |= DRM_MODE_FLAG_3D_MASK; in drm_helper_probe_single_connector_modes_merge_bits()
239 mode->status = drm_mode_validate_flag(mode, mode_flags); in drm_helper_probe_single_connector_modes_merge_bits()
Ddrm_mipi_dsi.c242 if (dsi->mode_flags & MIPI_DSI_MODE_LPM) in mipi_dsi_device_transfer()
/linux-4.4.14/drivers/gpu/drm/exynos/
Dexynos_drm_dsi.c280 u32 mode_flags; member
781 if (dsi->mode_flags & MIPI_DSI_MODE_VIDEO) { in exynos_dsi_init_link()
788 if (!(dsi->mode_flags & MIPI_DSI_MODE_VSYNC_FLUSH)) in exynos_dsi_init_link()
790 if (dsi->mode_flags & MIPI_DSI_MODE_VIDEO_SYNC_PULSE) in exynos_dsi_init_link()
792 if (dsi->mode_flags & MIPI_DSI_MODE_VIDEO_BURST) in exynos_dsi_init_link()
794 if (dsi->mode_flags & MIPI_DSI_MODE_VIDEO_AUTO_VERT) in exynos_dsi_init_link()
796 if (dsi->mode_flags & MIPI_DSI_MODE_VIDEO_HSE) in exynos_dsi_init_link()
798 if (!(dsi->mode_flags & MIPI_DSI_MODE_VIDEO_HFP)) in exynos_dsi_init_link()
800 if (!(dsi->mode_flags & MIPI_DSI_MODE_VIDEO_HBP)) in exynos_dsi_init_link()
802 if (!(dsi->mode_flags & MIPI_DSI_MODE_VIDEO_HSA)) in exynos_dsi_init_link()
[all …]
/linux-4.4.14/drivers/leds/
Dleds-max77693.c99 unsigned int mode_flags; member
202 led->mode_flags &= (~MODE_TORCH(i) & ~MODE_FLASH(i)); in max77693_add_mode()
204 new_mode_flags = mode | led->mode_flags; in max77693_add_mode()
207 if (new_mode_flags ^ led->mode_flags) in max77693_add_mode()
208 led->mode_flags = new_mode_flags; in max77693_add_mode()
212 ret = max77693_set_mode_reg(led, led->mode_flags); in max77693_add_mode()
221 led->mode_flags &= ~mode; in max77693_add_mode()
233 led->mode_flags &= ~mode; in max77693_clear_mode()
235 return max77693_set_mode_reg(led, led->mode_flags); in max77693_clear_mode()
/linux-4.4.14/drivers/gpu/drm/msm/dsi/
Ddsi_host.c132 unsigned long mode_flags; member
570 static inline enum dsi_traffic_mode dsi_get_traffic_mode(const u32 mode_flags) in dsi_get_traffic_mode() argument
572 if (mode_flags & MIPI_DSI_MODE_VIDEO_BURST) in dsi_get_traffic_mode()
574 else if (mode_flags & MIPI_DSI_MODE_VIDEO_SYNC_PULSE) in dsi_get_traffic_mode()
607 u32 flags = msm_host->mode_flags; in dsi_ctrl_config()
726 if (msm_host->mode_flags & MIPI_DSI_MODE_VIDEO) { in dsi_timing_setup()
824 if (!(msm_host->mode_flags & MIPI_DSI_MODE_VIDEO)) in dsi_wait4video_eng_busy()
1079 if ((msm_host->mode_flags & MIPI_DSI_MODE_VIDEO) && (len > bllp_len)) { in dsi_cmds2buf_tx()
1295 msm_host->mode_flags = dsi->mode_flags; in dsi_host_attach()
1803 !!(msm_host->mode_flags & MIPI_DSI_MODE_VIDEO), true); in msm_dsi_host_enable()
[all …]
/linux-4.4.14/sound/synth/emux/
Dsoundfont.c679 avp->sample_mode = sample->v.mode_flags; in set_sample()
983 smp->v.mode_flags = 0; in load_guspatch()
985 smp->v.mode_flags |= SNDRV_SFNT_SAMPLE_8BITS; in load_guspatch()
987 smp->v.mode_flags |= SNDRV_SFNT_SAMPLE_UNSIGNED; in load_guspatch()
988 smp->v.mode_flags |= SNDRV_SFNT_SAMPLE_NO_BLANK; in load_guspatch()
990 smp->v.mode_flags |= SNDRV_SFNT_SAMPLE_SINGLESHOT; in load_guspatch()
992 smp->v.mode_flags |= SNDRV_SFNT_SAMPLE_BIDIR_LOOP; in load_guspatch()
994 smp->v.mode_flags |= SNDRV_SFNT_SAMPLE_REVERSE_LOOP; in load_guspatch()
1105 if (!(smp->v.mode_flags & SNDRV_SFNT_SAMPLE_SINGLESHOT)) in load_guspatch()
/linux-4.4.14/mm/
Dmempolicy.c1136 unsigned short mode, unsigned short mode_flags, in do_mbind() argument
1164 new = mpol_new(mode, mode_flags, nmask); in do_mbind()
1179 start, start + len, mode, mode_flags, in do_mbind()
1304 unsigned short mode_flags; in SYSCALL_DEFINE6() local
1306 mode_flags = mode & MPOL_MODE_FLAGS; in SYSCALL_DEFINE6()
1310 if ((mode_flags & MPOL_F_STATIC_NODES) && in SYSCALL_DEFINE6()
1311 (mode_flags & MPOL_F_RELATIVE_NODES)) in SYSCALL_DEFINE6()
1316 return do_mbind(start, len, mode, mode_flags, &nodes, flags); in SYSCALL_DEFINE6()
2651 unsigned short mode_flags; in mpol_parse_str() local
2721 mode_flags = 0; in mpol_parse_str()
[all …]
/linux-4.4.14/include/uapi/sound/
Dsfnt_info.h167 unsigned short mode_flags; /* mode flags */ member
/linux-4.4.14/drivers/media/dvb-frontends/
Ds921.c450 unsigned int mode_flags, in s921_tune() argument
461 if (!(mode_flags & FE_TUNE_MODE_ONESHOT)) in s921_tune()
Dcx24123.c996 unsigned int mode_flags, in cx24123_tune() argument
1005 if (!(mode_flags & FE_TUNE_MODE_ONESHOT)) in cx24123_tune()
Dds3000.c1047 unsigned int mode_flags, in ds3000_tune() argument
Dmb86a20s.c2043 unsigned int mode_flags, in mb86a20s_tune() argument
2055 if (!(mode_flags & FE_TUNE_MODE_ONESHOT)) in mb86a20s_tune()
Dcx24116.c1446 unsigned int mode_flags, unsigned int *delay, enum fe_status *status) in cx24116_tune() argument
Dcxd2841er.c2286 unsigned int mode_flags, in cxd2841er_tune_s() argument
2316 unsigned int mode_flags, in cxd2841er_tune_tc() argument
Dlgdt3306a.c1708 unsigned int mode_flags, unsigned int *delay, in lgdt3306a_tune() argument
Dcx24117.c1542 unsigned int mode_flags, unsigned int *delay, enum fe_status *status) in cx24117_tune() argument
Dcx24120.c1476 unsigned int mode_flags, unsigned int *delay, in cx24120_tune() argument
/linux-4.4.14/include/drm/
Ddrm_mipi_dsi.h158 unsigned long mode_flags; member
/linux-4.4.14/drivers/gpu/drm/i915/
Dintel_dsi_panel_vbt.c145 dsi_device->mode_flags &= ~MIPI_DSI_MODE_LPM; in mipi_exec_send_packet()
147 dsi_device->mode_flags |= MIPI_DSI_MODE_LPM; in mipi_exec_send_packet()
/linux-4.4.14/drivers/gpu/drm/gma500/
Dpsb_intel_drv.h186 u32 mode_flags; member
/linux-4.4.14/drivers/media/dvb-core/
Ddvb_frontend.h436 unsigned int mode_flags,
/linux-4.4.14/drivers/gpu/drm/panel/
Dpanel-sharp-lq101r1sx01.c383 dsi->mode_flags = MIPI_DSI_MODE_LPM; in sharp_panel_probe()
Dpanel-samsung-s6e8aa0.c992 dsi->mode_flags = MIPI_DSI_MODE_VIDEO | MIPI_DSI_MODE_VIDEO_BURST in s6e8aa0_probe()
Dpanel-simple.c1386 dsi->mode_flags = desc->flags; in panel_simple_dsi_probe()
/linux-4.4.14/drivers/media/pci/pt1/
Dva1j5jf8007t.c268 unsigned int mode_flags, unsigned int *delay, in va1j5jf8007t_tune() argument
Dva1j5jf8007s.c389 unsigned int mode_flags, unsigned int *delay, in va1j5jf8007s_tune() argument
/linux-4.4.14/drivers/media/pci/bt8xx/
Ddst.c1650 unsigned int mode_flags, in dst_tune_frontend() argument
1679 if (!(mode_flags & FE_TUNE_MODE_ONESHOT)) in dst_tune_frontend()
/linux-4.4.14/drivers/gpu/drm/tegra/
Ddsi.c1381 dsi->flags = device->mode_flags; in tegra_dsi_host_attach()