Lines Matching refs:shift
750 int shift = kcontrol->private_value & 0xff; in snd_ice1712_ews88d_control_get() local
760 data[0] = (data[shift >> 3] >> (shift & 7)) & 0x01; in snd_ice1712_ews88d_control_get()
771 int shift = kcontrol->private_value & 0xff; in snd_ice1712_ews88d_control_put() local
781 ndata[shift >> 3] = data[shift >> 3] & ~(1 << (shift & 7)); in snd_ice1712_ews88d_control_put()
784 ndata[shift >> 3] |= (1 << (shift & 7)); in snd_ice1712_ews88d_control_put()
787 ndata[shift >> 3] |= (1 << (shift & 7)); in snd_ice1712_ews88d_control_put()
789 change = (data[shift >> 3] != ndata[shift >> 3]); in snd_ice1712_ews88d_control_put()
861 int shift = kcontrol->private_value & 0xff; in snd_ice1712_6fire_control_get() local
867 data = (data >> shift) & 1; in snd_ice1712_6fire_control_get()
877 int shift = kcontrol->private_value & 0xff; in snd_ice1712_6fire_control_put() local
883 ndata = data & ~(1 << shift); in snd_ice1712_6fire_control_put()
885 ndata |= (1 << shift); in snd_ice1712_6fire_control_put()
887 ndata ^= (1 << shift); in snd_ice1712_6fire_control_put()