taglinefilesource code
note168drivers/sound/dev_table.hint (*kill_note) (int dev, int voice, int note, int velocity);
note169drivers/sound/dev_table.hint (*start_note) (int dev, int voice, int note, int velocity);
note181drivers/sound/dev_table.hint (*alloc_voice) (int dev, int chn, int note, struct voice_alloc_info *alloc);
note937drivers/sound/gus_wave.cguswave_kill_note (int dev, int voice, int note, int velocity)
note2676drivers/sound/gus_wave.cguswave_alloc (int dev, int chn, int note, struct voice_alloc_info *alloc)
note280drivers/sound/midi_synth.cmidi_synth_kill_note (int dev, int channel, int note, int velocity)
note285drivers/sound/midi_synth.cif (note < 0 || note > 127)
note301drivers/sound/midi_synth.cif (!prefix_cmd (orig_dev, note))
note304drivers/sound/midi_synth.cmidi_outc (orig_dev, note);
note325drivers/sound/midi_synth.cmidi_outc (orig_dev, note);
note337drivers/sound/midi_synth.cmidi_outc (orig_dev, note);
note366drivers/sound/midi_synth.cmidi_synth_start_note (int dev, int channel, int note, int velocity)
note371drivers/sound/midi_synth.cif (note < 0 || note > 127)
note387drivers/sound/midi_synth.cif (!prefix_cmd (orig_dev, note))
note389drivers/sound/midi_synth.cmidi_outc (orig_dev, note);
note399drivers/sound/midi_synth.cmidi_outc (orig_dev, note);
note3drivers/sound/midi_synth.hint midi_synth_kill_note (int dev, int channel, int note, int velocity);
note5drivers/sound/midi_synth.hint midi_synth_start_note (int dev, int channel, int note, int volume);
note90drivers/sound/opl3.cstatic int      opl3_kill_note (int dev, int voice, int note, int velocity);
note305drivers/sound/opl3.copl3_kill_note (int dev, int voice, int note, int velocity)
note552drivers/sound/opl3.copl3_start_note (int dev, int voice, int note, int volume)
note567drivers/sound/opl3.cif (note == 255)    /*
note722drivers/sound/opl3.cfreq = voices[voice].orig_freq = note_to_freq (note) / 1000;
note1101drivers/sound/opl3.copl3_alloc_voice (int dev, int chn, int note, struct voice_alloc_info *alloc)
note87drivers/sound/sequencer.cstatic int      seq_queue (unsigned char *note, char nonblock);
note367drivers/sound/sequencer.cseq_queue (unsigned char *note, char nonblock)
note394drivers/sound/sequencer.cmemcpy (&queue[qtail * EV_SZ], note, EV_SZ);
note455drivers/sound/sequencer.cfind_voice (int dev, int chn, int note)
note460drivers/sound/sequencer.ckey = (chn << 8) | (note + 1);
note470drivers/sound/sequencer.calloc_voice (int dev, int chn, int note)
note475drivers/sound/sequencer.ckey = (chn << 8) | (note + 1);
note477drivers/sound/sequencer.cvoice = synth_devs[dev]->alloc_voice (dev, chn, note,
note491drivers/sound/sequencer.cunsigned char   note = event[4];
note505drivers/sound/sequencer.cvoice = find_voice (dev, chn, note);
note517drivers/sound/sequencer.cif (note > 127 && note != 255)  /* Not a seq2 feature */
note522drivers/sound/sequencer.cvoice = alloc_voice (dev, chn, note);
note537drivers/sound/sequencer.csynth_devs[dev]->set_instr (dev, voice, 128 + note);
note538drivers/sound/sequencer.cnote = 60;  /* Middle C */
note548drivers/sound/sequencer.csynth_devs[dev]->start_note (dev, voice, note, parm);
note554drivers/sound/sequencer.csynth_devs[dev]->kill_note (dev, voice, note, parm);
note1814drivers/sound/sequencer.cint             note, octave, note_freq;
note1824drivers/sound/sequencer.cnote = note_num % 12;
note1826drivers/sound/sequencer.cnote_freq = notes[note];
note935include/linux/soundcard.h#define _CHN_VOICE(dev, event, chn, note, parm) \
note941include/linux/soundcard.h_seqbuf[_seqbufptr+4] = (note);\
note947include/linux/soundcard.h#define SEQ_START_NOTE(dev, chn, note, vol) \
note948include/linux/soundcard.h_CHN_VOICE(dev, MIDI_NOTEON, chn, note, vol)
note950include/linux/soundcard.h#define SEQ_STOP_NOTE(dev, chn, note, vol) \
note951include/linux/soundcard.h_CHN_VOICE(dev, MIDI_NOTEOFF, chn, note, vol)
note953include/linux/soundcard.h#define SEQ_KEY_PRESSURE(dev, chn, note, pressure) \
note954include/linux/soundcard.h_CHN_VOICE(dev, MIDI_KEY_PRESSURE, chn, note, pressure)