tag | line | file | source code |
note | 189 | drivers/sound/dev_table.h | int (*kill_note) (int dev, int voice, int note, int velocity); |
note | 190 | drivers/sound/dev_table.h | int (*start_note) (int dev, int voice, int note, int velocity); |
note | 202 | drivers/sound/dev_table.h | int (*alloc_voice) (int dev, int chn, int note, struct voice_alloc_info *alloc); |
note | 959 | drivers/sound/gus_wave.c | guswave_kill_note (int dev, int voice, int note, int velocity) |
note | 2715 | drivers/sound/gus_wave.c | guswave_alloc (int dev, int chn, int note, struct voice_alloc_info *alloc) |
note | 307 | drivers/sound/midi_synth.c | midi_synth_kill_note (int dev, int channel, int note, int velocity) |
note | 312 | drivers/sound/midi_synth.c | if (note < 0 || note > 127) |
note | 330 | drivers/sound/midi_synth.c | if (!prefix_cmd (orig_dev, note)) |
note | 333 | drivers/sound/midi_synth.c | midi_outc (orig_dev, note); |
note | 354 | drivers/sound/midi_synth.c | midi_outc (orig_dev, note); |
note | 366 | drivers/sound/midi_synth.c | midi_outc (orig_dev, note); |
note | 397 | drivers/sound/midi_synth.c | midi_synth_start_note (int dev, int channel, int note, int velocity) |
note | 402 | drivers/sound/midi_synth.c | if (note < 0 || note > 127) |
note | 420 | drivers/sound/midi_synth.c | if (!prefix_cmd (orig_dev, note)) |
note | 422 | drivers/sound/midi_synth.c | midi_outc (orig_dev, note); |
note | 432 | drivers/sound/midi_synth.c | midi_outc (orig_dev, note); |
note | 3 | drivers/sound/midi_synth.h | int midi_synth_kill_note (int dev, int channel, int note, int velocity); |
note | 5 | drivers/sound/midi_synth.h | int midi_synth_start_note (int dev, int channel, int note, int volume); |
note | 89 | drivers/sound/opl3.c | static int opl3_kill_note (int dev, int voice, int note, int velocity); |
note | 319 | drivers/sound/opl3.c | opl3_kill_note (int dev, int voice, int note, int velocity) |
note | 523 | drivers/sound/opl3.c | opl3_start_note (int dev, int voice, int note, int volume) |
note | 538 | drivers/sound/opl3.c | if (note == 255) /* |
note | 693 | drivers/sound/opl3.c | freq = devc->voc[voice].orig_freq = note_to_freq (note) / 1000; |
note | 1068 | drivers/sound/opl3.c | opl3_alloc_voice (int dev, int chn, int note, struct voice_alloc_info *alloc) |
note | 92 | drivers/sound/sequencer.c | static int seq_queue (unsigned char *note, char nonblock); |
note | 396 | drivers/sound/sequencer.c | seq_queue (unsigned char *note, char nonblock) |
note | 439 | drivers/sound/sequencer.c | memcpy (&queue[qtail * EV_SZ], note, EV_SZ); |
note | 500 | drivers/sound/sequencer.c | find_voice (int dev, int chn, int note) |
note | 505 | drivers/sound/sequencer.c | key = (chn << 8) | (note + 1); |
note | 515 | drivers/sound/sequencer.c | alloc_voice (int dev, int chn, int note) |
note | 520 | drivers/sound/sequencer.c | key = (chn << 8) | (note + 1); |
note | 522 | drivers/sound/sequencer.c | voice = synth_devs[dev]->alloc_voice (dev, chn, note, |
note | 536 | drivers/sound/sequencer.c | unsigned char note = event[4]; |
note | 550 | drivers/sound/sequencer.c | voice = find_voice (dev, chn, note); |
note | 562 | drivers/sound/sequencer.c | if (note > 127 && note != 255) /* Not a seq2 feature */ |
note | 567 | drivers/sound/sequencer.c | voice = alloc_voice (dev, chn, note); |
note | 582 | drivers/sound/sequencer.c | synth_devs[dev]->set_instr (dev, voice, 128 + note); |
note | 583 | drivers/sound/sequencer.c | note = 60; /* Middle C */ |
note | 593 | drivers/sound/sequencer.c | synth_devs[dev]->start_note (dev, voice, note, parm); |
note | 599 | drivers/sound/sequencer.c | synth_devs[dev]->kill_note (dev, voice, note, parm); |
note | 1984 | drivers/sound/sequencer.c | int note, octave, note_freq; |
note | 1994 | drivers/sound/sequencer.c | note = note_num % 12; |
note | 1996 | drivers/sound/sequencer.c | note_freq = notes[note]; |
note | 985 | include/linux/soundcard.h | #define _CHN_VOICE(dev, event, chn, note, parm) \ |
note | 991 | include/linux/soundcard.h | _seqbuf[_seqbufptr+4] = (note);\ |
note | 997 | include/linux/soundcard.h | #define SEQ_START_NOTE(dev, chn, note, vol) \ |
note | 998 | include/linux/soundcard.h | _CHN_VOICE(dev, MIDI_NOTEON, chn, note, vol) |
note | 1000 | include/linux/soundcard.h | #define SEQ_STOP_NOTE(dev, chn, note, vol) \ |
note | 1001 | include/linux/soundcard.h | _CHN_VOICE(dev, MIDI_NOTEOFF, chn, note, vol) |
note | 1003 | include/linux/soundcard.h | #define SEQ_KEY_PRESSURE(dev, chn, note, pressure) \ |
note | 1004 | include/linux/soundcard.h | _CHN_VOICE(dev, MIDI_KEY_PRESSURE, chn, note, pressure) |