Lines Matching refs:temp
322 unsigned int temp; in start_voice() local
352 temp = FXBUS_MIDI_LEFT | (FXBUS_MIDI_RIGHT << 8) | in start_voice()
354 snd_emu10k1_ptr_write(hw, A_FXRT1, ch, temp); in start_voice()
356 temp = (FXBUS_MIDI_LEFT << 16) | (FXBUS_MIDI_RIGHT << 20) | in start_voice()
358 snd_emu10k1_ptr_write(hw, FXRT, ch, temp); in start_voice()
381 temp = (unsigned int)vp->acutoff << 8 | (unsigned char)vp->avol; in start_voice()
382 snd_emu10k1_ptr_write(hw, IFATN, vp->ch, temp); in start_voice()
399 temp = vp->reg.parm.reverb; in start_voice()
400 temp += (int)vp->chan->control[MIDI_CTL_E1_REVERB_DEPTH] * 9 / 10; in start_voice()
401 LIMITMAX(temp, 255); in start_voice()
403 snd_emu10k1_ptr_write(hw, PSST, vp->ch, (temp << 24) | addr); in start_voice()
407 temp = vp->reg.parm.chorus; in start_voice()
408 temp += (int)chan->control[MIDI_CTL_E3_CHORUS_DEPTH] * 9 / 10; in start_voice()
409 LIMITMAX(temp, 255); in start_voice()
410 temp = (temp <<24) | addr; in start_voice()
411 snd_emu10k1_ptr_write(hw, DSL, ch, temp); in start_voice()
418 …temp = (hw->silent_page.addr << hw->address_mode) | (hw->address_mode ? MAP_PTI_MASK1 : MAP_PTI_MA… in start_voice()
419 snd_emu10k1_ptr_write(hw, MAPA, ch, temp); in start_voice()
420 snd_emu10k1_ptr_write(hw, MAPB, ch, temp); in start_voice()
439 …temp = ((unsigned int)hw->silent_page.addr << hw_address_mode) | (hw->address_mode ? MAP_PTI_MASK1… in start_voice()
440 snd_emu10k1_ptr_write(hw, MAPA, ch, temp); in start_voice()
441 snd_emu10k1_ptr_write(hw, MAPB, ch, temp); in start_voice()
453 temp = vp->reg.parm.filterQ; in start_voice()
454 temp = (temp<<28) | addr; in start_voice()
456 temp |= CCCA_INTERPROM_0; in start_voice()
459 temp |= shift << 25; in start_voice()
462 temp |= CCCA_8BITSELECT; in start_voice()
463 snd_emu10k1_ptr_write(hw, CCCA, ch, temp); in start_voice()
466 temp = (unsigned int)vp->vtarget << 16; in start_voice()
467 snd_emu10k1_ptr_write(hw, VTFT, ch, temp | vp->ftarget); in start_voice()
468 snd_emu10k1_ptr_write(hw, CVCF, ch, temp | 0xff00); in start_voice()
478 unsigned int temp, ptarget; in trigger_voice() local
494 temp = ptarget | (vp->apan << 8) | vp->aaux; in trigger_voice()
495 snd_emu10k1_ptr_write(hw, PTRX, vp->ch, temp); in trigger_voice()