vel               458 dev/ic/opl.c   oplsyn_noteon(ms, voice, freq, vel)
vel               460 dev/ic/opl.c   	u_int32_t voice, freq, vel;
vel               518 dev/ic/opl.c   		vol0 = opl_calc_vol(ksl0, vel, sc->volume);
vel               519 dev/ic/opl.c   		vol1 = opl_calc_vol(ksl1, vel, sc->volume);
vel               522 dev/ic/opl.c   		vol1 = opl_calc_vol(ksl1, vel, sc->volume);
vel               549 dev/ic/opl.c   oplsyn_noteoff(ms, voice, note, vel)
vel               551 dev/ic/opl.c   	u_int32_t voice, note, vel;
vel               570 dev/ic/opl.c   oplsyn_keypressure(ms, voice, note, vel)
vel               572 dev/ic/opl.c   	u_int32_t voice, note, vel;
vel               127 dev/isa/midi_pcppi.c midi_pcppi_on(ms, chan, note, vel)
vel               129 dev/isa/midi_pcppi.c 	u_int32_t chan, note, vel;
vel               138 dev/isa/midi_pcppi.c midi_pcppi_off(ms, chan, note, vel)
vel               140 dev/isa/midi_pcppi.c 	u_int32_t chan, note, vel;
vel               250 dev/midisyn.c  	u_int32_t note, vel;
vel               274 dev/midisyn.c  	vel = ms->buf[2];
vel               279 dev/midisyn.c  			fs->noteoff(ms, voice, note, vel);
vel               285 dev/midisyn.c  		fs->noteon(ms, voice, note, vel);
vel               291 dev/midisyn.c  				fs->keypres(ms, voice, note, vel);
vel               296 dev/midisyn.c  			fs->ctlchg(ms, chan, ms->buf[1], vel);
vel               313 dev/midisyn.c  				fs->pitchb(ms, chan, note, vel);
vel              1089 dev/sequencer.c midiseq_noteon(struct midi_dev *md, int chan, int note, int vel)
vel              1094 dev/sequencer.c 		     MIDI_NOTEON | chan, note, vel));
vel              1098 dev/sequencer.c 	if (vel < 0) vel = 0;
vel              1099 dev/sequencer.c 	if (vel > 127) vel = 127;
vel              1102 dev/sequencer.c 	buf[2] = vel;
vel              1107 dev/sequencer.c midiseq_noteoff(struct midi_dev *md, int chan, int note, int vel)
vel              1114 dev/sequencer.c 	if (vel < 0) vel = 0;
vel              1115 dev/sequencer.c 	if (vel > 127) vel = 127;
vel              1118 dev/sequencer.c 	buf[2] = vel;
vel              1123 dev/sequencer.c midiseq_keypressure(struct midi_dev *md, int chan, int note, int vel)
vel              1130 dev/sequencer.c 	if (vel < 0) vel = 0;
vel              1131 dev/sequencer.c 	if (vel > 127) vel = 127;
vel              1134 dev/sequencer.c 	buf[2] = vel;
vel               183 sys/midiio.h   #define SEQ_MK_CHN_VOICE(e, unit, cmd, chan, key, vel) (\
vel               185 sys/midiio.h       (e)->arr[3] = (chan), (e)->arr[4] = (key), (e)->arr[5] = (vel),\