taglinefilesource code
note197drivers/sound/dev_table.hint (*kill_note) (int dev, int voice, int note, int velocity);
note198drivers/sound/dev_table.hint (*start_note) (int dev, int voice, int note, int velocity);
note210drivers/sound/dev_table.hint (*alloc_voice) (int dev, int chn, int note, struct voice_alloc_info *alloc);
note964drivers/sound/gus_wave.cguswave_kill_note (int dev, int voice, int note, int velocity)
note2719drivers/sound/gus_wave.cguswave_alloc (int dev, int chn, int note, struct voice_alloc_info *alloc)
note309drivers/sound/midi_synth.cmidi_synth_kill_note (int dev, int channel, int note, int velocity)
note314drivers/sound/midi_synth.cif (note < 0 || note > 127)
note332drivers/sound/midi_synth.cif (!prefix_cmd (orig_dev, note))
note335drivers/sound/midi_synth.cmidi_outc (orig_dev, note);
note356drivers/sound/midi_synth.cmidi_outc (orig_dev, note);
note368drivers/sound/midi_synth.cmidi_outc (orig_dev, note);
note399drivers/sound/midi_synth.cmidi_synth_start_note (int dev, int channel, int note, int velocity)
note404drivers/sound/midi_synth.cif (note < 0 || note > 127)
note422drivers/sound/midi_synth.cif (!prefix_cmd (orig_dev, note))
note424drivers/sound/midi_synth.cmidi_outc (orig_dev, note);
note434drivers/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);
note92drivers/sound/opl3.cstatic int      opl3_kill_note (int dev, int voice, int note, int velocity);
note322drivers/sound/opl3.copl3_kill_note (int dev, int voice, int note, int velocity)
note526drivers/sound/opl3.copl3_start_note (int dev, int voice, int note, int volume)
note541drivers/sound/opl3.cif (note == 255)    /*
note696drivers/sound/opl3.cfreq = devc->voc[voice].orig_freq = note_to_freq (note) / 1000;
note1071drivers/sound/opl3.copl3_alloc_voice (int dev, int chn, int note, struct voice_alloc_info *alloc)
note92drivers/sound/sequencer.cstatic int      seq_queue (unsigned char *note, char nonblock);
note394drivers/sound/sequencer.cseq_queue (unsigned char *note, char nonblock)
note424drivers/sound/sequencer.cmemcpy (&queue[qtail * EV_SZ], note, EV_SZ);
note485drivers/sound/sequencer.cfind_voice (int dev, int chn, int note)
note490drivers/sound/sequencer.ckey = (chn << 8) | (note + 1);
note500drivers/sound/sequencer.calloc_voice (int dev, int chn, int note)
note505drivers/sound/sequencer.ckey = (chn << 8) | (note + 1);
note507drivers/sound/sequencer.cvoice = synth_devs[dev]->alloc_voice (dev, chn, note,
note521drivers/sound/sequencer.cunsigned char   note = event_rec[4];
note535drivers/sound/sequencer.cvoice = find_voice (dev, chn, note);
note547drivers/sound/sequencer.cif (note > 127 && note != 255)  /* Not a seq2 feature */
note552drivers/sound/sequencer.cvoice = alloc_voice (dev, chn, note);
note567drivers/sound/sequencer.csynth_devs[dev]->set_instr (dev, voice, 128 + note);
note568drivers/sound/sequencer.cnote = 60;  /* Middle C */
note578drivers/sound/sequencer.csynth_devs[dev]->start_note (dev, voice, note, parm);
note584drivers/sound/sequencer.csynth_devs[dev]->kill_note (dev, voice, note, parm);
note1958drivers/sound/sequencer.cint             note, octave, note_freq;
note1968drivers/sound/sequencer.cnote = note_num % 12;
note1970drivers/sound/sequencer.cnote_freq = notes[note];
note988include/linux/soundcard.h#define _CHN_VOICE(dev, event, chn, note, parm) \
note994include/linux/soundcard.h_seqbuf[_seqbufptr+4] = (note);\
note1000include/linux/soundcard.h#define SEQ_START_NOTE(dev, chn, note, vol) \
note1001include/linux/soundcard.h_CHN_VOICE(dev, MIDI_NOTEON, chn, note, vol)
note1003include/linux/soundcard.h#define SEQ_STOP_NOTE(dev, chn, note, vol) \
note1004include/linux/soundcard.h_CHN_VOICE(dev, MIDI_NOTEOFF, chn, note, vol)
note1006include/linux/soundcard.h#define SEQ_KEY_PRESSURE(dev, chn, note, pressure) \
note1007include/linux/soundcard.h_CHN_VOICE(dev, MIDI_KEY_PRESSURE, chn, note, pressure)