taglinefilesource code
note151drivers/sound/dev_table.hint (*kill_note) (int dev, int voice, int note, int velocity);
note152drivers/sound/dev_table.hint (*start_note) (int dev, int voice, int note, int velocity);
note164drivers/sound/dev_table.hint (*alloc_voice) (int dev, int chn, int note, struct voice_alloc_info *alloc);
note907drivers/sound/gus_wave.cguswave_kill_note (int dev, int voice, int note, int velocity)
note2604drivers/sound/gus_wave.cguswave_alloc (int dev, int chn, int note, struct voice_alloc_info *alloc)
note129drivers/sound/midi_synth.cmidi_synth_kill_note (int dev, int channel, int note, int velocity)
note134drivers/sound/midi_synth.cif (note < 0 || note > 127)
note150drivers/sound/midi_synth.cif (!prefix_cmd (orig_dev, note))
note153drivers/sound/midi_synth.cmidi_outc (orig_dev, note);
note174drivers/sound/midi_synth.cmidi_outc (orig_dev, note);
note186drivers/sound/midi_synth.cmidi_outc (orig_dev, note);
note215drivers/sound/midi_synth.cmidi_synth_start_note (int dev, int channel, int note, int velocity)
note220drivers/sound/midi_synth.cif (note < 0 || note > 127)
note236drivers/sound/midi_synth.cif (!prefix_cmd (orig_dev, note))
note238drivers/sound/midi_synth.cmidi_outc (orig_dev, note);
note248drivers/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);
note293drivers/sound/opl3.copl3_kill_note (int dev, int voice, int note, int velocity)
note540drivers/sound/opl3.copl3_start_note (int dev, int voice, int note, int volume)
note555drivers/sound/opl3.cif (note == 255)    /*
note710drivers/sound/opl3.cfreq = voices[voice].orig_freq = note_to_freq (note) / 1000;
note1077drivers/sound/opl3.copl3_alloc_voice (int dev, int chn, int note, struct voice_alloc_info *alloc)
note86drivers/sound/sequencer.cstatic int      seq_queue (unsigned char *note);
note353drivers/sound/sequencer.cseq_queue (unsigned char *note)
note379drivers/sound/sequencer.cmemcpy (&queue[qtail * EV_SZ], note, EV_SZ);
note440drivers/sound/sequencer.cfind_voice (int dev, int chn, int note)
note445drivers/sound/sequencer.ckey = (chn << 8) | (note + 1);
note455drivers/sound/sequencer.calloc_voice (int dev, int chn, int note)
note460drivers/sound/sequencer.ckey = (chn << 8) | (note + 1);
note462drivers/sound/sequencer.cvoice = synth_devs[dev]->alloc_voice (dev, chn, note,
note474drivers/sound/sequencer.cunsigned char   note = event[4];
note488drivers/sound/sequencer.cvoice = find_voice (dev, chn, note);
note500drivers/sound/sequencer.cif (note > 127 && note != 255)
note505drivers/sound/sequencer.cvoice = alloc_voice (dev, chn, note);
note517drivers/sound/sequencer.csynth_devs[dev]->start_note (dev, voice, note, parm);
note523drivers/sound/sequencer.csynth_devs[dev]->kill_note (dev, voice, note, parm);
note1718drivers/sound/sequencer.cint             note, octave, note_freq;
note1728drivers/sound/sequencer.cnote = note_num % 12;
note1730drivers/sound/sequencer.cnote_freq = notes[note];
note844include/linux/soundcard.h#define _CHN_VOICE(dev, event, chn, note, parm) \
note850include/linux/soundcard.h_seqbuf[_seqbufptr+4] = (note);\
note856include/linux/soundcard.h#define SEQ_START_NOTE(dev, chn, note, vol) \
note857include/linux/soundcard.h_CHN_VOICE(dev, MIDI_NOTEON, chn, note, vol)
note859include/linux/soundcard.h#define SEQ_STOP_NOTE(dev, chn, note, vol) \
note860include/linux/soundcard.h_CHN_VOICE(dev, MIDI_NOTEOFF, chn, note, vol)
note862include/linux/soundcard.h#define SEQ_KEY_PRESSURE(dev, chn, note, pressure) \
note863include/linux/soundcard.h_CHN_VOICE(dev, MIDI_KEY_PRESSURE, chn, note, pressure)