Lines Matching refs:private_value

397 	int reg = kcontrol->private_value & 0xff;  in snd_at73c213_mono_get()
398 int shift = (kcontrol->private_value >> 8) & 0xff; in snd_at73c213_mono_get()
399 int mask = (kcontrol->private_value >> 16) & 0xff; in snd_at73c213_mono_get()
400 int invert = (kcontrol->private_value >> 24) & 0xff; in snd_at73c213_mono_get()
420 int reg = kcontrol->private_value & 0xff; in snd_at73c213_mono_put()
421 int shift = (kcontrol->private_value >> 8) & 0xff; in snd_at73c213_mono_put()
422 int mask = (kcontrol->private_value >> 16) & 0xff; in snd_at73c213_mono_put()
423 int invert = (kcontrol->private_value >> 24) & 0xff; in snd_at73c213_mono_put()
449 int mask = (kcontrol->private_value >> 24) & 0xff; in snd_at73c213_stereo_info()
467 int left_reg = kcontrol->private_value & 0xff; in snd_at73c213_stereo_get()
468 int right_reg = (kcontrol->private_value >> 8) & 0xff; in snd_at73c213_stereo_get()
469 int shift_left = (kcontrol->private_value >> 16) & 0x07; in snd_at73c213_stereo_get()
470 int shift_right = (kcontrol->private_value >> 19) & 0x07; in snd_at73c213_stereo_get()
471 int mask = (kcontrol->private_value >> 24) & 0xff; in snd_at73c213_stereo_get()
472 int invert = (kcontrol->private_value >> 22) & 1; in snd_at73c213_stereo_get()
497 int left_reg = kcontrol->private_value & 0xff; in snd_at73c213_stereo_put()
498 int right_reg = (kcontrol->private_value >> 8) & 0xff; in snd_at73c213_stereo_put()
499 int shift_left = (kcontrol->private_value >> 16) & 0x07; in snd_at73c213_stereo_put()
500 int shift_right = (kcontrol->private_value >> 19) & 0x07; in snd_at73c213_stereo_put()
501 int mask = (kcontrol->private_value >> 24) & 0xff; in snd_at73c213_stereo_put()
502 int invert = (kcontrol->private_value >> 22) & 1; in snd_at73c213_stereo_put()
546 int reg = kcontrol->private_value & 0xff; in snd_at73c213_mono_switch_get()
547 int shift = (kcontrol->private_value >> 8) & 0xff; in snd_at73c213_mono_switch_get()
548 int invert = (kcontrol->private_value >> 24) & 0xff; in snd_at73c213_mono_switch_get()
568 int reg = kcontrol->private_value & 0xff; in snd_at73c213_mono_switch_put()
569 int shift = (kcontrol->private_value >> 8) & 0xff; in snd_at73c213_mono_switch_put()
570 int mask = (kcontrol->private_value >> 16) & 0xff; in snd_at73c213_mono_switch_put()
571 int invert = (kcontrol->private_value >> 24) & 0xff; in snd_at73c213_mono_switch_put()
605 uinfo->value.integer.max = ((kcontrol->private_value >> 16) & 0xff) - 1; in snd_at73c213_pa_volume_info()
644 .private_value = (reg | (shift << 8) | (mask << 16) | (invert << 24)) \
655 .private_value = (left_reg | (right_reg << 8) \
674 .private_value = PA_CTRL | (PA_CTRL_APAGAIN << 8) | \
687 .private_value = DAC_AUXG | (0 << 8) | (0x1f << 16) | (1 << 24),
698 .private_value = DAC_LLIG | (DAC_RLIG << 8) | (0 << 16) | (0 << 19)