taglinefilesource code
note186drivers/sound/dev_table.hint (*kill_note) (int dev, int voice, int note, int velocity);
note187drivers/sound/dev_table.hint (*start_note) (int dev, int voice, int note, int velocity);
note199drivers/sound/dev_table.hint (*alloc_voice) (int dev, int chn, int note, struct voice_alloc_info *alloc);
note959drivers/sound/gus_wave.cguswave_kill_note (int dev, int voice, int note, int velocity)
note2720drivers/sound/gus_wave.cguswave_alloc (int dev, int chn, int note, struct voice_alloc_info *alloc)
note302drivers/sound/midi_synth.cmidi_synth_kill_note (int dev, int channel, int note, int velocity)
note307drivers/sound/midi_synth.cif (note < 0 || note > 127)
note325drivers/sound/midi_synth.cif (!prefix_cmd (orig_dev, note))
note328drivers/sound/midi_synth.cmidi_outc (orig_dev, note);
note349drivers/sound/midi_synth.cmidi_outc (orig_dev, note);
note361drivers/sound/midi_synth.cmidi_outc (orig_dev, note);
note392drivers/sound/midi_synth.cmidi_synth_start_note (int dev, int channel, int note, int velocity)
note397drivers/sound/midi_synth.cif (note < 0 || note > 127)
note415drivers/sound/midi_synth.cif (!prefix_cmd (orig_dev, note))
note417drivers/sound/midi_synth.cmidi_outc (orig_dev, note);
note427drivers/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);
note89drivers/sound/opl3.cstatic int      opl3_kill_note (int dev, int voice, int note, int velocity);
note319drivers/sound/opl3.copl3_kill_note (int dev, int voice, int note, int velocity)
note523drivers/sound/opl3.copl3_start_note (int dev, int voice, int note, int volume)
note538drivers/sound/opl3.cif (note == 255)    /*
note693drivers/sound/opl3.cfreq = devc->voc[voice].orig_freq = note_to_freq (note) / 1000;
note1068drivers/sound/opl3.copl3_alloc_voice (int dev, int chn, int note, struct voice_alloc_info *alloc)
note91drivers/sound/sequencer.cstatic int      seq_queue (unsigned char *note, char nonblock);
note397drivers/sound/sequencer.cseq_queue (unsigned char *note, char nonblock)
note442drivers/sound/sequencer.cmemcpy (&queue[qtail * EV_SZ], note, EV_SZ);
note503drivers/sound/sequencer.cfind_voice (int dev, int chn, int note)
note508drivers/sound/sequencer.ckey = (chn << 8) | (note + 1);
note518drivers/sound/sequencer.calloc_voice (int dev, int chn, int note)
note523drivers/sound/sequencer.ckey = (chn << 8) | (note + 1);
note525drivers/sound/sequencer.cvoice = synth_devs[dev]->alloc_voice (dev, chn, note,
note539drivers/sound/sequencer.cunsigned char   note = event[4];
note553drivers/sound/sequencer.cvoice = find_voice (dev, chn, note);
note565drivers/sound/sequencer.cif (note > 127 && note != 255)  /* Not a seq2 feature */
note570drivers/sound/sequencer.cvoice = alloc_voice (dev, chn, note);
note585drivers/sound/sequencer.csynth_devs[dev]->set_instr (dev, voice, 128 + note);
note586drivers/sound/sequencer.cnote = 60;  /* Middle C */
note596drivers/sound/sequencer.csynth_devs[dev]->start_note (dev, voice, note, parm);
note602drivers/sound/sequencer.csynth_devs[dev]->kill_note (dev, voice, note, parm);
note1999drivers/sound/sequencer.cint             note, octave, note_freq;
note2009drivers/sound/sequencer.cnote = note_num % 12;
note2011drivers/sound/sequencer.cnote_freq = notes[note];
note984include/linux/soundcard.h#define _CHN_VOICE(dev, event, chn, note, parm) \
note990include/linux/soundcard.h_seqbuf[_seqbufptr+4] = (note);\
note996include/linux/soundcard.h#define SEQ_START_NOTE(dev, chn, note, vol) \
note997include/linux/soundcard.h_CHN_VOICE(dev, MIDI_NOTEON, chn, note, vol)
note999include/linux/soundcard.h#define SEQ_STOP_NOTE(dev, chn, note, vol) \
note1000include/linux/soundcard.h_CHN_VOICE(dev, MIDI_NOTEOFF, chn, note, vol)
note1002include/linux/soundcard.h#define SEQ_KEY_PRESSURE(dev, chn, note, pressure) \
note1003include/linux/soundcard.h_CHN_VOICE(dev, MIDI_KEY_PRESSURE, chn, note, pressure)