tag | line | file | source code |
note | 168 | drivers/sound/dev_table.h | int (*kill_note) (int dev, int voice, int note, int velocity); |
note | 169 | drivers/sound/dev_table.h | int (*start_note) (int dev, int voice, int note, int velocity); |
note | 181 | drivers/sound/dev_table.h | int (*alloc_voice) (int dev, int chn, int note, struct voice_alloc_info *alloc); |
note | 937 | drivers/sound/gus_wave.c | guswave_kill_note (int dev, int voice, int note, int velocity) |
note | 2676 | drivers/sound/gus_wave.c | guswave_alloc (int dev, int chn, int note, struct voice_alloc_info *alloc) |
note | 280 | drivers/sound/midi_synth.c | midi_synth_kill_note (int dev, int channel, int note, int velocity) |
note | 285 | drivers/sound/midi_synth.c | if (note < 0 || note > 127) |
note | 301 | drivers/sound/midi_synth.c | if (!prefix_cmd (orig_dev, note)) |
note | 304 | drivers/sound/midi_synth.c | midi_outc (orig_dev, note); |
note | 325 | drivers/sound/midi_synth.c | midi_outc (orig_dev, note); |
note | 337 | drivers/sound/midi_synth.c | midi_outc (orig_dev, note); |
note | 366 | drivers/sound/midi_synth.c | midi_synth_start_note (int dev, int channel, int note, int velocity) |
note | 371 | drivers/sound/midi_synth.c | if (note < 0 || note > 127) |
note | 387 | drivers/sound/midi_synth.c | if (!prefix_cmd (orig_dev, note)) |
note | 389 | drivers/sound/midi_synth.c | midi_outc (orig_dev, note); |
note | 399 | 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 | 90 | drivers/sound/opl3.c | static int opl3_kill_note (int dev, int voice, int note, int velocity); |
note | 305 | drivers/sound/opl3.c | opl3_kill_note (int dev, int voice, int note, int velocity) |
note | 552 | drivers/sound/opl3.c | opl3_start_note (int dev, int voice, int note, int volume) |
note | 567 | drivers/sound/opl3.c | if (note == 255) /* |
note | 722 | drivers/sound/opl3.c | freq = voices[voice].orig_freq = note_to_freq (note) / 1000; |
note | 1101 | drivers/sound/opl3.c | opl3_alloc_voice (int dev, int chn, int note, struct voice_alloc_info *alloc) |
note | 87 | drivers/sound/sequencer.c | static int seq_queue (unsigned char *note, char nonblock); |
note | 367 | drivers/sound/sequencer.c | seq_queue (unsigned char *note, char nonblock) |
note | 394 | drivers/sound/sequencer.c | memcpy (&queue[qtail * EV_SZ], note, EV_SZ); |
note | 455 | drivers/sound/sequencer.c | find_voice (int dev, int chn, int note) |
note | 460 | drivers/sound/sequencer.c | key = (chn << 8) | (note + 1); |
note | 470 | drivers/sound/sequencer.c | alloc_voice (int dev, int chn, int note) |
note | 475 | drivers/sound/sequencer.c | key = (chn << 8) | (note + 1); |
note | 477 | drivers/sound/sequencer.c | voice = synth_devs[dev]->alloc_voice (dev, chn, note, |
note | 491 | drivers/sound/sequencer.c | unsigned char note = event[4]; |
note | 505 | drivers/sound/sequencer.c | voice = find_voice (dev, chn, note); |
note | 517 | drivers/sound/sequencer.c | if (note > 127 && note != 255) /* Not a seq2 feature */ |
note | 522 | drivers/sound/sequencer.c | voice = alloc_voice (dev, chn, note); |
note | 537 | drivers/sound/sequencer.c | synth_devs[dev]->set_instr (dev, voice, 128 + note); |
note | 538 | drivers/sound/sequencer.c | note = 60; /* Middle C */ |
note | 548 | drivers/sound/sequencer.c | synth_devs[dev]->start_note (dev, voice, note, parm); |
note | 554 | drivers/sound/sequencer.c | synth_devs[dev]->kill_note (dev, voice, note, parm); |
note | 1814 | drivers/sound/sequencer.c | int note, octave, note_freq; |
note | 1824 | drivers/sound/sequencer.c | note = note_num % 12; |
note | 1826 | drivers/sound/sequencer.c | note_freq = notes[note]; |
note | 935 | include/linux/soundcard.h | #define _CHN_VOICE(dev, event, chn, note, parm) \ |
note | 941 | include/linux/soundcard.h | _seqbuf[_seqbufptr+4] = (note);\ |
note | 947 | include/linux/soundcard.h | #define SEQ_START_NOTE(dev, chn, note, vol) \ |
note | 948 | include/linux/soundcard.h | _CHN_VOICE(dev, MIDI_NOTEON, chn, note, vol) |
note | 950 | include/linux/soundcard.h | #define SEQ_STOP_NOTE(dev, chn, note, vol) \ |
note | 951 | include/linux/soundcard.h | _CHN_VOICE(dev, MIDI_NOTEOFF, chn, note, vol) |
note | 953 | include/linux/soundcard.h | #define SEQ_KEY_PRESSURE(dev, chn, note, pressure) \ |
note | 954 | include/linux/soundcard.h | _CHN_VOICE(dev, MIDI_KEY_PRESSURE, chn, note, pressure) |