tag | line | file | source code |
velocity | 168 | drivers/sound/dev_table.h | int (*kill_note) (int dev, int voice, int note, int velocity); |
velocity | 169 | drivers/sound/dev_table.h | int (*start_note) (int dev, int voice, int note, int velocity); |
velocity | 937 | drivers/sound/gus_wave.c | guswave_kill_note (int dev, int voice, int note, int velocity) |
velocity | 280 | drivers/sound/midi_synth.c | midi_synth_kill_note (int dev, int channel, int note, int velocity) |
velocity | 289 | drivers/sound/midi_synth.c | if (velocity < 0) |
velocity | 290 | drivers/sound/midi_synth.c | velocity = 0; |
velocity | 291 | drivers/sound/midi_synth.c | if (velocity > 127) |
velocity | 292 | drivers/sound/midi_synth.c | velocity = 127; |
velocity | 297 | drivers/sound/midi_synth.c | if (chn == channel && ((msg == 0x90 && velocity == 64) || msg == 0x80)) |
velocity | 314 | drivers/sound/midi_synth.c | midi_outc (orig_dev, velocity); |
velocity | 318 | drivers/sound/midi_synth.c | if (velocity == 64) |
velocity | 338 | drivers/sound/midi_synth.c | midi_outc (orig_dev, velocity); |
velocity | 366 | drivers/sound/midi_synth.c | midi_synth_start_note (int dev, int channel, int note, int velocity) |
velocity | 375 | drivers/sound/midi_synth.c | if (velocity < 0) |
velocity | 376 | drivers/sound/midi_synth.c | velocity = 0; |
velocity | 377 | drivers/sound/midi_synth.c | if (velocity > 127) |
velocity | 378 | drivers/sound/midi_synth.c | velocity = 127; |
velocity | 390 | drivers/sound/midi_synth.c | midi_outc (orig_dev, velocity); |
velocity | 400 | 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 | 90 | drivers/sound/opl3.c | static int opl3_kill_note (int dev, int voice, int note, int velocity); |
velocity | 305 | drivers/sound/opl3.c | opl3_kill_note (int dev, int voice, int note, int velocity) |