tag | line | file | source code |
velocity | 197 | drivers/sound/dev_table.h | int (*kill_note) (int dev, int voice, int note, int velocity); |
velocity | 198 | drivers/sound/dev_table.h | int (*start_note) (int dev, int voice, int note, int velocity); |
velocity | 964 | drivers/sound/gus_wave.c | guswave_kill_note (int dev, int voice, int note, int velocity) |
velocity | 309 | drivers/sound/midi_synth.c | midi_synth_kill_note (int dev, int channel, int note, int velocity) |
velocity | 318 | drivers/sound/midi_synth.c | if (velocity < 0) |
velocity | 319 | drivers/sound/midi_synth.c | velocity = 0; |
velocity | 320 | drivers/sound/midi_synth.c | if (velocity > 127) |
velocity | 321 | drivers/sound/midi_synth.c | velocity = 127; |
velocity | 328 | drivers/sound/midi_synth.c | if (chn == channel && ((msg == 0x90 && velocity == 64) || msg == 0x80)) |
velocity | 345 | drivers/sound/midi_synth.c | midi_outc (orig_dev, velocity); |
velocity | 349 | drivers/sound/midi_synth.c | if (velocity == 64) |
velocity | 369 | drivers/sound/midi_synth.c | midi_outc (orig_dev, velocity); |
velocity | 399 | drivers/sound/midi_synth.c | midi_synth_start_note (int dev, int channel, int note, int velocity) |
velocity | 408 | drivers/sound/midi_synth.c | if (velocity < 0) |
velocity | 409 | drivers/sound/midi_synth.c | velocity = 0; |
velocity | 410 | drivers/sound/midi_synth.c | if (velocity > 127) |
velocity | 411 | drivers/sound/midi_synth.c | velocity = 127; |
velocity | 425 | drivers/sound/midi_synth.c | midi_outc (orig_dev, velocity); |
velocity | 435 | 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 | 92 | drivers/sound/opl3.c | static int opl3_kill_note (int dev, int voice, int note, int velocity); |
velocity | 322 | drivers/sound/opl3.c | opl3_kill_note (int dev, int voice, int note, int velocity) |