Searched refs:oleft (Results 1 - 3 of 3) sorted by path

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/sound/isa/sb/
H A Dsb_mixer.c154 unsigned char left, right, oleft, oright; local
160 oleft = snd_sbmixer_read(sb, left_reg);
161 left = (oleft & ~((mask << left_shift) | (mask << right_shift))) | left | right;
162 change = left != oleft;
166 oleft = snd_sbmixer_read(sb, left_reg);
168 left = (oleft & ~(mask << left_shift)) | left;
170 change = left != oleft || right != oright;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/sound/pci/
H A Dcmipci.c1860 int left, right, oleft, oright; local
1875 oleft = snd_cmipci_mixer_read(cm, reg.left_reg);
1876 left |= oleft & ~(reg.mask << reg.left_shift);
1877 change = left != oleft;
H A Dsonicvibes.c526 int vol, oleft, oright, mleft, mright; local
533 oleft = mleft = snd_sonicvibes_in1(sonic, SV_IREG_LEFT_ANALOG);
535 oleft &= 0x1f;
537 oleft += vol;
538 if (oleft < 0)
539 oleft = 0;
540 if (oleft > 0x1f)
541 oleft = 0x1f;
551 oleft |= mleft & 0x80;
553 snd_sonicvibes_out1(sonic, SV_IREG_LEFT_ANALOG, oleft);
[all...]

Completed in 134 milliseconds