Searched refs:oval1 (Results 1 – 8 of 8) sorted by relevance
/linux/sound/isa/gus/ |
H A D | gus_mixer.c | 97 unsigned char val1, val2, oval1, oval2; in snd_ics_put_double() local 102 oval1 = gus->gf1.ics_regs[addr][0]; in snd_ics_put_double() 104 change = val1 != oval1 || val2 != oval2; in snd_ics_put_double()
|
/linux/sound/isa/es1688/ |
H A D | es1688_lib.c | 878 unsigned char val1, val2, oval1, oval2; in snd_es1688_put_double() local 891 oval1 = snd_es1688_mixer_read(chip, left_reg); in snd_es1688_put_double() 893 oval1 = snd_es1688_read(chip, left_reg); in snd_es1688_put_double() 898 val1 = (oval1 & ~(mask << shift_left)) | val1; in snd_es1688_put_double() 900 change = val1 != oval1 || val2 != oval2; in snd_es1688_put_double() 913 oval1 = snd_es1688_mixer_read(chip, left_reg); in snd_es1688_put_double() 915 oval1 = snd_es1688_read(chip, left_reg); in snd_es1688_put_double() 916 val1 = (oval1 & ~((mask << shift_left) | (mask << shift_right))) | val1 | val2; in snd_es1688_put_double() 917 change = val1 != oval1; in snd_es1688_put_double()
|
/linux/sound/isa/ |
H A D | opl3sa2.c | 424 unsigned short val1, val2, oval1, oval2; in snd_opl3sa2_put_double() local 436 oval1 = chip->ctlregs[left_reg]; in snd_opl3sa2_put_double() 438 val1 = (oval1 & ~(mask << shift_left)) | val1; in snd_opl3sa2_put_double() 440 change = val1 != oval1 || val2 != oval2; in snd_opl3sa2_put_double() 444 oval1 = chip->ctlregs[left_reg]; in snd_opl3sa2_put_double() 445 val1 = (oval1 & ~((mask << shift_left) | (mask << shift_right))) | val1 | val2; in snd_opl3sa2_put_double() 446 change = val1 != oval1; in snd_opl3sa2_put_double()
|
/linux/Documentation/translations/zh_CN/core-api/ |
H A D | this_cpu_ops.rst | 54 this_cpu_cmpxchg_double(pcp1, pcp2, oval1, oval2, nval1, nval2) 212 __this_cpu_cmpxchg_double(pcp1, pcp2, oval1, oval2, nval1, nval2)
|
/linux/sound/i2c/ |
H A D | tea6330t.c | 148 unsigned char oval1, oval2, val1, val2; in snd_tea6330t_put_master_switch() local 153 oval1 = tea->regs[TEA6330T_SADDR_VOLUME_LEFT] == 0 ? 0 : 1; in snd_tea6330t_put_master_switch() 155 change = val1 != oval1 || val2 != oval2; in snd_tea6330t_put_master_switch()
|
/linux/sound/pci/ |
H A D | sonicvibes.c | 907 unsigned short left, right, oval1, oval2; in snd_sonicvibes_put_mux() local 916 oval1 = snd_sonicvibes_in1(sonic, SV_IREG_LEFT_ADC); in snd_sonicvibes_put_mux() 918 left = (oval1 & ~SV_RECSRC_OUT) | left; in snd_sonicvibes_put_mux() 920 change = left != oval1 || right != oval2; in snd_sonicvibes_put_mux() 1031 unsigned short val1, val2, oval1, oval2; in snd_sonicvibes_put_double() local 1042 oval1 = snd_sonicvibes_in1(sonic, left_reg); in snd_sonicvibes_put_double() 1044 val1 = (oval1 & ~(mask << shift_left)) | val1; in snd_sonicvibes_put_double() 1046 change = val1 != oval1 || val2 != oval2; in snd_sonicvibes_put_double()
|
H A D | cmipci.c | 2112 int val1, val2, oval1, oval2; in snd_cmipci_put_input_sw() local 2116 oval1 = snd_cmipci_mixer_read(cm, reg.left_reg); in snd_cmipci_put_input_sw() 2118 val1 = oval1 & ~((1 << reg.left_shift) | (1 << reg.right_shift)); in snd_cmipci_put_input_sw() 2124 change = val1 != oval1 || val2 != oval2; in snd_cmipci_put_input_sw()
|
/linux/sound/isa/sb/ |
H A D | sb_mixer.c | 414 unsigned char val1, val2, oval1, oval2; in snd_sb16mixer_put_input_sw() local 417 oval1 = snd_sbmixer_read(sb, reg1); in snd_sb16mixer_put_input_sw() 419 val1 = oval1 & ~((1 << left_shift) | (1 << right_shift)); in snd_sb16mixer_put_input_sw() 425 change = val1 != oval1 || val2 != oval2; in snd_sb16mixer_put_input_sw()
|