Lines Matching refs:sol
441 unsigned int sol; in snd_emu10k1_voice_set_loop_stop() local
447 sol = inl(emu->port + DATA); in snd_emu10k1_voice_set_loop_stop()
448 sol |= 1 << (voicenum - 32); in snd_emu10k1_voice_set_loop_stop()
451 sol = inl(emu->port + DATA); in snd_emu10k1_voice_set_loop_stop()
452 sol |= 1 << voicenum; in snd_emu10k1_voice_set_loop_stop()
454 outl(sol, emu->port + DATA); in snd_emu10k1_voice_set_loop_stop()
461 unsigned int sol; in snd_emu10k1_voice_clear_loop_stop() local
467 sol = inl(emu->port + DATA); in snd_emu10k1_voice_clear_loop_stop()
468 sol &= ~(1 << (voicenum - 32)); in snd_emu10k1_voice_clear_loop_stop()
471 sol = inl(emu->port + DATA); in snd_emu10k1_voice_clear_loop_stop()
472 sol &= ~(1 << voicenum); in snd_emu10k1_voice_clear_loop_stop()
474 outl(sol, emu->port + DATA); in snd_emu10k1_voice_clear_loop_stop()