Lines Matching refs:private_value

408 	int reg = kcontrol->private_value & 0xff;  in snd_at73c213_mono_get()
409 int shift = (kcontrol->private_value >> 8) & 0xff; in snd_at73c213_mono_get()
410 int mask = (kcontrol->private_value >> 16) & 0xff; in snd_at73c213_mono_get()
411 int invert = (kcontrol->private_value >> 24) & 0xff; in snd_at73c213_mono_get()
431 int reg = kcontrol->private_value & 0xff; in snd_at73c213_mono_put()
432 int shift = (kcontrol->private_value >> 8) & 0xff; in snd_at73c213_mono_put()
433 int mask = (kcontrol->private_value >> 16) & 0xff; in snd_at73c213_mono_put()
434 int invert = (kcontrol->private_value >> 24) & 0xff; in snd_at73c213_mono_put()
460 int mask = (kcontrol->private_value >> 24) & 0xff; in snd_at73c213_stereo_info()
478 int left_reg = kcontrol->private_value & 0xff; in snd_at73c213_stereo_get()
479 int right_reg = (kcontrol->private_value >> 8) & 0xff; in snd_at73c213_stereo_get()
480 int shift_left = (kcontrol->private_value >> 16) & 0x07; in snd_at73c213_stereo_get()
481 int shift_right = (kcontrol->private_value >> 19) & 0x07; in snd_at73c213_stereo_get()
482 int mask = (kcontrol->private_value >> 24) & 0xff; in snd_at73c213_stereo_get()
483 int invert = (kcontrol->private_value >> 22) & 1; in snd_at73c213_stereo_get()
508 int left_reg = kcontrol->private_value & 0xff; in snd_at73c213_stereo_put()
509 int right_reg = (kcontrol->private_value >> 8) & 0xff; in snd_at73c213_stereo_put()
510 int shift_left = (kcontrol->private_value >> 16) & 0x07; in snd_at73c213_stereo_put()
511 int shift_right = (kcontrol->private_value >> 19) & 0x07; in snd_at73c213_stereo_put()
512 int mask = (kcontrol->private_value >> 24) & 0xff; in snd_at73c213_stereo_put()
513 int invert = (kcontrol->private_value >> 22) & 1; in snd_at73c213_stereo_put()
557 int reg = kcontrol->private_value & 0xff; in snd_at73c213_mono_switch_get()
558 int shift = (kcontrol->private_value >> 8) & 0xff; in snd_at73c213_mono_switch_get()
559 int invert = (kcontrol->private_value >> 24) & 0xff; in snd_at73c213_mono_switch_get()
579 int reg = kcontrol->private_value & 0xff; in snd_at73c213_mono_switch_put()
580 int shift = (kcontrol->private_value >> 8) & 0xff; in snd_at73c213_mono_switch_put()
581 int mask = (kcontrol->private_value >> 16) & 0xff; in snd_at73c213_mono_switch_put()
582 int invert = (kcontrol->private_value >> 24) & 0xff; in snd_at73c213_mono_switch_put()
616 uinfo->value.integer.max = ((kcontrol->private_value >> 16) & 0xff) - 1; in snd_at73c213_pa_volume_info()
655 .private_value = (reg | (shift << 8) | (mask << 16) | (invert << 24)) \
666 .private_value = (left_reg | (right_reg << 8) \
685 .private_value = PA_CTRL | (PA_CTRL_APAGAIN << 8) | \
698 .private_value = DAC_AUXG | (0 << 8) | (0x1f << 16) | (1 << 24),
709 .private_value = DAC_LLIG | (DAC_RLIG << 8) | (0 << 16) | (0 << 19)