Lines Matching refs:sol
427 unsigned int sol; in snd_emu10k1_voice_set_loop_stop() local
433 sol = inl(emu->port + DATA); in snd_emu10k1_voice_set_loop_stop()
434 sol |= 1 << (voicenum - 32); in snd_emu10k1_voice_set_loop_stop()
437 sol = inl(emu->port + DATA); in snd_emu10k1_voice_set_loop_stop()
438 sol |= 1 << voicenum; in snd_emu10k1_voice_set_loop_stop()
440 outl(sol, emu->port + DATA); in snd_emu10k1_voice_set_loop_stop()
447 unsigned int sol; in snd_emu10k1_voice_clear_loop_stop() local
453 sol = inl(emu->port + DATA); in snd_emu10k1_voice_clear_loop_stop()
454 sol &= ~(1 << (voicenum - 32)); in snd_emu10k1_voice_clear_loop_stop()
457 sol = inl(emu->port + DATA); in snd_emu10k1_voice_clear_loop_stop()
458 sol &= ~(1 << voicenum); in snd_emu10k1_voice_clear_loop_stop()
460 outl(sol, emu->port + DATA); in snd_emu10k1_voice_clear_loop_stop()