tag | line | file | source code |
velocity | 151 | drivers/sound/dev_table.h | int (*kill_note) (int dev, int voice, int note, int velocity); |
velocity | 152 | drivers/sound/dev_table.h | int (*start_note) (int dev, int voice, int note, int velocity); |
velocity | 907 | drivers/sound/gus_wave.c | guswave_kill_note (int dev, int voice, int note, int velocity) |
velocity | 129 | drivers/sound/midi_synth.c | midi_synth_kill_note (int dev, int channel, int note, int velocity) |
velocity | 138 | drivers/sound/midi_synth.c | if (velocity < 0) |
velocity | 139 | drivers/sound/midi_synth.c | velocity = 0; |
velocity | 140 | drivers/sound/midi_synth.c | if (velocity > 127) |
velocity | 141 | drivers/sound/midi_synth.c | velocity = 127; |
velocity | 146 | drivers/sound/midi_synth.c | if (chn == channel && ((msg == 0x90 && velocity == 64) || msg == 0x80)) |
velocity | 163 | drivers/sound/midi_synth.c | midi_outc (orig_dev, velocity); |
velocity | 167 | drivers/sound/midi_synth.c | if (velocity == 64) |
velocity | 187 | drivers/sound/midi_synth.c | midi_outc (orig_dev, velocity); |
velocity | 215 | drivers/sound/midi_synth.c | midi_synth_start_note (int dev, int channel, int note, int velocity) |
velocity | 224 | drivers/sound/midi_synth.c | if (velocity < 0) |
velocity | 225 | drivers/sound/midi_synth.c | velocity = 0; |
velocity | 226 | drivers/sound/midi_synth.c | if (velocity > 127) |
velocity | 227 | drivers/sound/midi_synth.c | velocity = 127; |
velocity | 239 | drivers/sound/midi_synth.c | midi_outc (orig_dev, velocity); |
velocity | 249 | drivers/sound/midi_synth.c | midi_outc (orig_dev, velocity); |
velocity | 3 | drivers/sound/midi_synth.h | int midi_synth_kill_note (int dev, int channel, int note, int velocity); |
velocity | 89 | drivers/sound/opl3.c | static int opl3_kill_note (int dev, int voice, int note, int velocity); |
velocity | 293 | drivers/sound/opl3.c | opl3_kill_note (int dev, int voice, int note, int velocity) |