Lines Matching refs:private_value
405 int reg = kcontrol->private_value & 0xff; in snd_at73c213_mono_get()
406 int shift = (kcontrol->private_value >> 8) & 0xff; in snd_at73c213_mono_get()
407 int mask = (kcontrol->private_value >> 16) & 0xff; in snd_at73c213_mono_get()
408 int invert = (kcontrol->private_value >> 24) & 0xff; in snd_at73c213_mono_get()
428 int reg = kcontrol->private_value & 0xff; in snd_at73c213_mono_put()
429 int shift = (kcontrol->private_value >> 8) & 0xff; in snd_at73c213_mono_put()
430 int mask = (kcontrol->private_value >> 16) & 0xff; in snd_at73c213_mono_put()
431 int invert = (kcontrol->private_value >> 24) & 0xff; in snd_at73c213_mono_put()
457 int mask = (kcontrol->private_value >> 24) & 0xff; in snd_at73c213_stereo_info()
475 int left_reg = kcontrol->private_value & 0xff; in snd_at73c213_stereo_get()
476 int right_reg = (kcontrol->private_value >> 8) & 0xff; in snd_at73c213_stereo_get()
477 int shift_left = (kcontrol->private_value >> 16) & 0x07; in snd_at73c213_stereo_get()
478 int shift_right = (kcontrol->private_value >> 19) & 0x07; in snd_at73c213_stereo_get()
479 int mask = (kcontrol->private_value >> 24) & 0xff; in snd_at73c213_stereo_get()
480 int invert = (kcontrol->private_value >> 22) & 1; in snd_at73c213_stereo_get()
505 int left_reg = kcontrol->private_value & 0xff; in snd_at73c213_stereo_put()
506 int right_reg = (kcontrol->private_value >> 8) & 0xff; in snd_at73c213_stereo_put()
507 int shift_left = (kcontrol->private_value >> 16) & 0x07; in snd_at73c213_stereo_put()
508 int shift_right = (kcontrol->private_value >> 19) & 0x07; in snd_at73c213_stereo_put()
509 int mask = (kcontrol->private_value >> 24) & 0xff; in snd_at73c213_stereo_put()
510 int invert = (kcontrol->private_value >> 22) & 1; in snd_at73c213_stereo_put()
554 int reg = kcontrol->private_value & 0xff; in snd_at73c213_mono_switch_get()
555 int shift = (kcontrol->private_value >> 8) & 0xff; in snd_at73c213_mono_switch_get()
556 int invert = (kcontrol->private_value >> 24) & 0xff; in snd_at73c213_mono_switch_get()
576 int reg = kcontrol->private_value & 0xff; in snd_at73c213_mono_switch_put()
577 int shift = (kcontrol->private_value >> 8) & 0xff; in snd_at73c213_mono_switch_put()
578 int mask = (kcontrol->private_value >> 16) & 0xff; in snd_at73c213_mono_switch_put()
579 int invert = (kcontrol->private_value >> 24) & 0xff; in snd_at73c213_mono_switch_put()
613 uinfo->value.integer.max = ((kcontrol->private_value >> 16) & 0xff) - 1; in snd_at73c213_pa_volume_info()
652 .private_value = (reg | (shift << 8) | (mask << 16) | (invert << 24)) \
663 .private_value = (left_reg | (right_reg << 8) \
682 .private_value = PA_CTRL | (PA_CTRL_APAGAIN << 8) | \
695 .private_value = DAC_AUXG | (0 << 8) | (0x1f << 16) | (1 << 24),
706 .private_value = DAC_LLIG | (DAC_RLIG << 8) | (0 << 16) | (0 << 19)