taglinefilesource code
note87drivers/sound/dev_table.hint (*start_note) (int dev, int voice, int note, int velocity);
note429drivers/sound/opl3.copl3_start_note (int dev, int voice, int note, int volume)
note444drivers/sound/opl3.cif (note == 255)    /* Just change the volume */
note557drivers/sound/opl3.cfreq = voices[voice].orig_freq = note_to_freq (note) / 1000;
note63drivers/sound/sequencer.cstatic int      seq_queue (unsigned char *note);
note262drivers/sound/sequencer.cseq_queue (unsigned char *note)
note280drivers/sound/sequencer.cmemcpy (&queue[qtail][0], note, EV_SZ);
note1021drivers/sound/sequencer.cint             note, octave, note_freq;
note1031drivers/sound/sequencer.cnote = note_num % 12;
note1033drivers/sound/sequencer.cnote_freq = notes[note];
note641drivers/sound/soundcard.h#define SEQ_START_NOTE(dev, voice, note, vol)  {_SEQ_NEEDBUF(8);\
note646drivers/sound/soundcard.h_seqbuf[_seqbufptr+4] = (note);\
note652drivers/sound/soundcard.h#define SEQ_STOP_NOTE(dev, voice, note, vol)  {_SEQ_NEEDBUF(8);\
note657drivers/sound/soundcard.h_seqbuf[_seqbufptr+4] = (note);\
note1378drivers/sound/soundcard.h#define SEQ_START_NOTE(dev, voice, note, vol)  {_SEQ_NEEDBUF(8);\
note1383drivers/sound/soundcard.h_seqbuf[_seqbufptr+4] = (note);\
note1389drivers/sound/soundcard.h#define SEQ_STOP_NOTE(dev, voice, note, vol)  {_SEQ_NEEDBUF(8);\
note1394drivers/sound/soundcard.h_seqbuf[_seqbufptr+4] = (note);\