tag | line | file | source code |
note | 195 | drivers/sound/dev_table.h | int (*kill_note) (int dev, int voice, int note, int velocity); |
note | 196 | drivers/sound/dev_table.h | int (*start_note) (int dev, int voice, int note, int velocity); |
note | 208 | drivers/sound/dev_table.h | int (*alloc_voice) (int dev, int chn, int note, struct voice_alloc_info *alloc); |
note | 964 | drivers/sound/gus_wave.c | guswave_kill_note (int dev, int voice, int note, int velocity) |
note | 2719 | drivers/sound/gus_wave.c | guswave_alloc (int dev, int chn, int note, struct voice_alloc_info *alloc) |
note | 309 | drivers/sound/midi_synth.c | midi_synth_kill_note (int dev, int channel, int note, int velocity) |
note | 314 | drivers/sound/midi_synth.c | if (note < 0 || note > 127) |
note | 332 | drivers/sound/midi_synth.c | if (!prefix_cmd (orig_dev, note)) |
note | 335 | drivers/sound/midi_synth.c | midi_outc (orig_dev, note); |
note | 356 | drivers/sound/midi_synth.c | midi_outc (orig_dev, note); |
note | 368 | drivers/sound/midi_synth.c | midi_outc (orig_dev, note); |
note | 399 | drivers/sound/midi_synth.c | midi_synth_start_note (int dev, int channel, int note, int velocity) |
note | 404 | drivers/sound/midi_synth.c | if (note < 0 || note > 127) |
note | 422 | drivers/sound/midi_synth.c | if (!prefix_cmd (orig_dev, note)) |
note | 424 | drivers/sound/midi_synth.c | midi_outc (orig_dev, note); |
note | 434 | 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 | 92 | drivers/sound/opl3.c | static int opl3_kill_note (int dev, int voice, int note, int velocity); |
note | 322 | drivers/sound/opl3.c | opl3_kill_note (int dev, int voice, int note, int velocity) |
note | 526 | drivers/sound/opl3.c | opl3_start_note (int dev, int voice, int note, int volume) |
note | 541 | drivers/sound/opl3.c | if (note == 255) /* |
note | 696 | drivers/sound/opl3.c | freq = devc->voc[voice].orig_freq = note_to_freq (note) / 1000; |
note | 1071 | 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 | 394 | drivers/sound/sequencer.c | seq_queue (unsigned char *note, char nonblock) |
note | 424 | drivers/sound/sequencer.c | memcpy (&queue[qtail * EV_SZ], note, EV_SZ); |
note | 485 | drivers/sound/sequencer.c | find_voice (int dev, int chn, int note) |
note | 490 | drivers/sound/sequencer.c | key = (chn << 8) | (note + 1); |
note | 500 | drivers/sound/sequencer.c | alloc_voice (int dev, int chn, int note) |
note | 505 | drivers/sound/sequencer.c | key = (chn << 8) | (note + 1); |
note | 507 | drivers/sound/sequencer.c | voice = synth_devs[dev]->alloc_voice (dev, chn, note, |
note | 521 | drivers/sound/sequencer.c | unsigned char note = event_rec[4]; |
note | 535 | drivers/sound/sequencer.c | voice = find_voice (dev, chn, note); |
note | 547 | drivers/sound/sequencer.c | if (note > 127 && note != 255) /* Not a seq2 feature */ |
note | 552 | drivers/sound/sequencer.c | voice = alloc_voice (dev, chn, note); |
note | 567 | drivers/sound/sequencer.c | synth_devs[dev]->set_instr (dev, voice, 128 + note); |
note | 568 | drivers/sound/sequencer.c | note = 60; /* Middle C */ |
note | 578 | drivers/sound/sequencer.c | synth_devs[dev]->start_note (dev, voice, note, parm); |
note | 584 | drivers/sound/sequencer.c | synth_devs[dev]->kill_note (dev, voice, note, parm); |
note | 1958 | drivers/sound/sequencer.c | int note, octave, note_freq; |
note | 1968 | drivers/sound/sequencer.c | note = note_num % 12; |
note | 1970 | drivers/sound/sequencer.c | note_freq = notes[note]; |
note | 988 | include/linux/soundcard.h | #define _CHN_VOICE(dev, event, chn, note, parm) \ |
note | 994 | include/linux/soundcard.h | _seqbuf[_seqbufptr+4] = (note);\ |
note | 1000 | include/linux/soundcard.h | #define SEQ_START_NOTE(dev, chn, note, vol) \ |
note | 1001 | include/linux/soundcard.h | _CHN_VOICE(dev, MIDI_NOTEON, chn, note, vol) |
note | 1003 | include/linux/soundcard.h | #define SEQ_STOP_NOTE(dev, chn, note, vol) \ |
note | 1004 | include/linux/soundcard.h | _CHN_VOICE(dev, MIDI_NOTEOFF, chn, note, vol) |
note | 1006 | include/linux/soundcard.h | #define SEQ_KEY_PRESSURE(dev, chn, note, pressure) \ |
note | 1007 | include/linux/soundcard.h | _CHN_VOICE(dev, MIDI_KEY_PRESSURE, chn, note, pressure) |