taglinefilesource code
vol386drivers/sound/gus_wave.cgus_voice_volume (unsigned int vol)
vol389drivers/sound/gus_wave.cgus_write16 (0x09, (unsigned short)(vol << 4));
vol472drivers/sound/gus_wave.cunsigned        vol, prev_vol, phase;
vol497drivers/sound/gus_wave.cvol = voices[voice].initial_volume * voices[voice].env_offset[phase] / 255;
vol503drivers/sound/gus_wave.cif (((vol - prev_vol) / 64) == 0)  /* No significant volume change */
vol509drivers/sound/gus_wave.cif (vol > prev_vol)
vol511drivers/sound/gus_wave.cif (vol >= (4096 - 64))
vol512drivers/sound/gus_wave.cvol = 4096 - 65;
vol513drivers/sound/gus_wave.cgus_ramp_range (0, vol);
vol518drivers/sound/gus_wave.cif (vol <= 64)
vol519drivers/sound/gus_wave.cvol = 65;
vol520drivers/sound/gus_wave.cgus_ramp_range (vol, 4095);
vol523drivers/sound/gus_wave.cvoices[voice].current_volume = vol;
vol647include/linux/soundcard.h#define SEQ_START_NOTE(dev, voice, note, vol)  {_SEQ_NEEDBUF(8);\
vol653include/linux/soundcard.h_seqbuf[_seqbufptr+5] = (vol);\
vol658include/linux/soundcard.h#define SEQ_STOP_NOTE(dev, voice, note, vol)  {_SEQ_NEEDBUF(8);\
vol664include/linux/soundcard.h_seqbuf[_seqbufptr+5] = (vol);\