Searched refs:oright (Results 1 – 3 of 3) sorted by relevance
/linux-2.6.39/sound/pci/ |
D | sonicvibes.c | 642 int vol, oleft, oright, mleft, mright; in snd_sonicvibes_interrupt() local 650 oright = mright = snd_sonicvibes_in1(sonic, SV_IREG_RIGHT_ANALOG); in snd_sonicvibes_interrupt() 652 oright &= 0x1f; in snd_sonicvibes_interrupt() 658 oright += vol; in snd_sonicvibes_interrupt() 659 if (oright < 0) in snd_sonicvibes_interrupt() 660 oright = 0; in snd_sonicvibes_interrupt() 661 if (oright > 0x1f) in snd_sonicvibes_interrupt() 662 oright = 0x1f; in snd_sonicvibes_interrupt() 668 oright |= mright & 0x80; in snd_sonicvibes_interrupt() 670 snd_sonicvibes_out1(sonic, SV_IREG_RIGHT_ANALOG, oright); in snd_sonicvibes_interrupt()
|
D | cmipci.c | 2071 int left, right, oleft, oright; in snd_cmipci_put_volume() local 2092 oright = snd_cmipci_mixer_read(cm, reg.right_reg); in snd_cmipci_put_volume() 2094 oright = left; in snd_cmipci_put_volume() 2095 right |= oright & ~(reg.mask << reg.right_shift); in snd_cmipci_put_volume() 2096 change |= right != oright; in snd_cmipci_put_volume()
|
/linux-2.6.39/sound/isa/sb/ |
D | sb_mixer.c | 153 unsigned char left, right, oleft, oright; in snd_sbmixer_put_double() local 166 oright = snd_sbmixer_read(sb, right_reg); in snd_sbmixer_put_double() 168 right = (oright & ~(mask << right_shift)) | right; in snd_sbmixer_put_double() 169 change = left != oleft || right != oright; in snd_sbmixer_put_double()
|