Lines Matching refs:private_value
399 int reg = kcontrol->private_value & 0xff; in snd_at73c213_mono_get()
400 int shift = (kcontrol->private_value >> 8) & 0xff; in snd_at73c213_mono_get()
401 int mask = (kcontrol->private_value >> 16) & 0xff; in snd_at73c213_mono_get()
402 int invert = (kcontrol->private_value >> 24) & 0xff; in snd_at73c213_mono_get()
422 int reg = kcontrol->private_value & 0xff; in snd_at73c213_mono_put()
423 int shift = (kcontrol->private_value >> 8) & 0xff; in snd_at73c213_mono_put()
424 int mask = (kcontrol->private_value >> 16) & 0xff; in snd_at73c213_mono_put()
425 int invert = (kcontrol->private_value >> 24) & 0xff; in snd_at73c213_mono_put()
451 int mask = (kcontrol->private_value >> 24) & 0xff; in snd_at73c213_stereo_info()
469 int left_reg = kcontrol->private_value & 0xff; in snd_at73c213_stereo_get()
470 int right_reg = (kcontrol->private_value >> 8) & 0xff; in snd_at73c213_stereo_get()
471 int shift_left = (kcontrol->private_value >> 16) & 0x07; in snd_at73c213_stereo_get()
472 int shift_right = (kcontrol->private_value >> 19) & 0x07; in snd_at73c213_stereo_get()
473 int mask = (kcontrol->private_value >> 24) & 0xff; in snd_at73c213_stereo_get()
474 int invert = (kcontrol->private_value >> 22) & 1; in snd_at73c213_stereo_get()
499 int left_reg = kcontrol->private_value & 0xff; in snd_at73c213_stereo_put()
500 int right_reg = (kcontrol->private_value >> 8) & 0xff; in snd_at73c213_stereo_put()
501 int shift_left = (kcontrol->private_value >> 16) & 0x07; in snd_at73c213_stereo_put()
502 int shift_right = (kcontrol->private_value >> 19) & 0x07; in snd_at73c213_stereo_put()
503 int mask = (kcontrol->private_value >> 24) & 0xff; in snd_at73c213_stereo_put()
504 int invert = (kcontrol->private_value >> 22) & 1; in snd_at73c213_stereo_put()
548 int reg = kcontrol->private_value & 0xff; in snd_at73c213_mono_switch_get()
549 int shift = (kcontrol->private_value >> 8) & 0xff; in snd_at73c213_mono_switch_get()
550 int invert = (kcontrol->private_value >> 24) & 0xff; in snd_at73c213_mono_switch_get()
570 int reg = kcontrol->private_value & 0xff; in snd_at73c213_mono_switch_put()
571 int shift = (kcontrol->private_value >> 8) & 0xff; in snd_at73c213_mono_switch_put()
572 int mask = (kcontrol->private_value >> 16) & 0xff; in snd_at73c213_mono_switch_put()
573 int invert = (kcontrol->private_value >> 24) & 0xff; in snd_at73c213_mono_switch_put()
607 uinfo->value.integer.max = ((kcontrol->private_value >> 16) & 0xff) - 1; in snd_at73c213_pa_volume_info()
646 .private_value = (reg | (shift << 8) | (mask << 16) | (invert << 24)) \
657 .private_value = (left_reg | (right_reg << 8) \
676 .private_value = PA_CTRL | (PA_CTRL_APAGAIN << 8) | \
689 .private_value = DAC_AUXG | (0 << 8) | (0x1f << 16) | (1 << 24),
700 .private_value = DAC_LLIG | (DAC_RLIG << 8) | (0 << 16) | (0 << 19)