Lines Matching refs:private_value

962   .private_value = reg | (shift << 8) | (mask << 16) | (invert << 24) }
966 int mask = (kcontrol->private_value >> 16) & 0xff; in snd_sonicvibes_info_single()
978 int reg = kcontrol->private_value & 0xff; in snd_sonicvibes_get_single()
979 int shift = (kcontrol->private_value >> 8) & 0xff; in snd_sonicvibes_get_single()
980 int mask = (kcontrol->private_value >> 16) & 0xff; in snd_sonicvibes_get_single()
981 int invert = (kcontrol->private_value >> 24) & 0xff; in snd_sonicvibes_get_single()
994 int reg = kcontrol->private_value & 0xff; in snd_sonicvibes_put_single()
995 int shift = (kcontrol->private_value >> 8) & 0xff; in snd_sonicvibes_put_single()
996 int mask = (kcontrol->private_value >> 16) & 0xff; in snd_sonicvibes_put_single()
997 int invert = (kcontrol->private_value >> 24) & 0xff; in snd_sonicvibes_put_single()
1018 ….private_value = left_reg | (right_reg << 8) | (shift_left << 16) | (shift_right << 19) | (mask <<…
1022 int mask = (kcontrol->private_value >> 24) & 0xff; in snd_sonicvibes_info_double()
1034 int left_reg = kcontrol->private_value & 0xff; in snd_sonicvibes_get_double()
1035 int right_reg = (kcontrol->private_value >> 8) & 0xff; in snd_sonicvibes_get_double()
1036 int shift_left = (kcontrol->private_value >> 16) & 0x07; in snd_sonicvibes_get_double()
1037 int shift_right = (kcontrol->private_value >> 19) & 0x07; in snd_sonicvibes_get_double()
1038 int mask = (kcontrol->private_value >> 24) & 0xff; in snd_sonicvibes_get_double()
1039 int invert = (kcontrol->private_value >> 22) & 1; in snd_sonicvibes_get_double()
1055 int left_reg = kcontrol->private_value & 0xff; in snd_sonicvibes_put_double()
1056 int right_reg = (kcontrol->private_value >> 8) & 0xff; in snd_sonicvibes_put_double()
1057 int shift_left = (kcontrol->private_value >> 16) & 0x07; in snd_sonicvibes_put_double()
1058 int shift_right = (kcontrol->private_value >> 19) & 0x07; in snd_sonicvibes_put_double()
1059 int mask = (kcontrol->private_value >> 24) & 0xff; in snd_sonicvibes_put_double()
1060 int invert = (kcontrol->private_value >> 22) & 1; in snd_sonicvibes_put_double()