tag | line | file | source code |
note | 151 | drivers/sound/dev_table.h | int (*kill_note) (int dev, int voice, int note, int velocity); |
note | 152 | drivers/sound/dev_table.h | int (*start_note) (int dev, int voice, int note, int velocity); |
note | 164 | drivers/sound/dev_table.h | int (*alloc_voice) (int dev, int chn, int note, struct voice_alloc_info *alloc); |
note | 907 | drivers/sound/gus_wave.c | guswave_kill_note (int dev, int voice, int note, int velocity) |
note | 2604 | drivers/sound/gus_wave.c | guswave_alloc (int dev, int chn, int note, struct voice_alloc_info *alloc) |
note | 129 | drivers/sound/midi_synth.c | midi_synth_kill_note (int dev, int channel, int note, int velocity) |
note | 134 | drivers/sound/midi_synth.c | if (note < 0 || note > 127) |
note | 150 | drivers/sound/midi_synth.c | if (!prefix_cmd (orig_dev, note)) |
note | 153 | drivers/sound/midi_synth.c | midi_outc (orig_dev, note); |
note | 174 | drivers/sound/midi_synth.c | midi_outc (orig_dev, note); |
note | 186 | drivers/sound/midi_synth.c | midi_outc (orig_dev, note); |
note | 215 | drivers/sound/midi_synth.c | midi_synth_start_note (int dev, int channel, int note, int velocity) |
note | 220 | drivers/sound/midi_synth.c | if (note < 0 || note > 127) |
note | 236 | drivers/sound/midi_synth.c | if (!prefix_cmd (orig_dev, note)) |
note | 238 | drivers/sound/midi_synth.c | midi_outc (orig_dev, note); |
note | 248 | 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 | 293 | drivers/sound/opl3.c | opl3_kill_note (int dev, int voice, int note, int velocity) |
note | 540 | drivers/sound/opl3.c | opl3_start_note (int dev, int voice, int note, int volume) |
note | 555 | drivers/sound/opl3.c | if (note == 255) /* |
note | 710 | drivers/sound/opl3.c | freq = voices[voice].orig_freq = note_to_freq (note) / 1000; |
note | 1077 | drivers/sound/opl3.c | opl3_alloc_voice (int dev, int chn, int note, struct voice_alloc_info *alloc) |
note | 86 | drivers/sound/sequencer.c | static int seq_queue (unsigned char *note); |
note | 353 | drivers/sound/sequencer.c | seq_queue (unsigned char *note) |
note | 379 | drivers/sound/sequencer.c | memcpy (&queue[qtail * EV_SZ], note, EV_SZ); |
note | 440 | drivers/sound/sequencer.c | find_voice (int dev, int chn, int note) |
note | 445 | drivers/sound/sequencer.c | key = (chn << 8) | (note + 1); |
note | 455 | drivers/sound/sequencer.c | alloc_voice (int dev, int chn, int note) |
note | 460 | drivers/sound/sequencer.c | key = (chn << 8) | (note + 1); |
note | 462 | drivers/sound/sequencer.c | voice = synth_devs[dev]->alloc_voice (dev, chn, note, |
note | 474 | drivers/sound/sequencer.c | unsigned char note = event[4]; |
note | 488 | drivers/sound/sequencer.c | voice = find_voice (dev, chn, note); |
note | 500 | drivers/sound/sequencer.c | if (note > 127 && note != 255) |
note | 505 | drivers/sound/sequencer.c | voice = alloc_voice (dev, chn, note); |
note | 517 | drivers/sound/sequencer.c | synth_devs[dev]->start_note (dev, voice, note, parm); |
note | 523 | drivers/sound/sequencer.c | synth_devs[dev]->kill_note (dev, voice, note, parm); |
note | 1718 | drivers/sound/sequencer.c | int note, octave, note_freq; |
note | 1728 | drivers/sound/sequencer.c | note = note_num % 12; |
note | 1730 | drivers/sound/sequencer.c | note_freq = notes[note]; |
note | 844 | include/linux/soundcard.h | #define _CHN_VOICE(dev, event, chn, note, parm) \ |
note | 850 | include/linux/soundcard.h | _seqbuf[_seqbufptr+4] = (note);\ |
note | 856 | include/linux/soundcard.h | #define SEQ_START_NOTE(dev, chn, note, vol) \ |
note | 857 | include/linux/soundcard.h | _CHN_VOICE(dev, MIDI_NOTEON, chn, note, vol) |
note | 859 | include/linux/soundcard.h | #define SEQ_STOP_NOTE(dev, chn, note, vol) \ |
note | 860 | include/linux/soundcard.h | _CHN_VOICE(dev, MIDI_NOTEOFF, chn, note, vol) |
note | 862 | include/linux/soundcard.h | #define SEQ_KEY_PRESSURE(dev, chn, note, pressure) \ |
note | 863 | include/linux/soundcard.h | _CHN_VOICE(dev, MIDI_KEY_PRESSURE, chn, note, pressure) |