tag | line | file | source code |
note | 90 | drivers/sound/dev_table.h | int (*start_note) (int dev, int voice, int note, int velocity); |
note | 429 | drivers/sound/opl3.c | opl3_start_note (int dev, int voice, int note, int volume) |
note | 444 | drivers/sound/opl3.c | if (note == 255) /* Just change the volume */ |
note | 557 | drivers/sound/opl3.c | freq = voices[voice].orig_freq = note_to_freq (note) / 1000; |
note | 63 | drivers/sound/sequencer.c | static int seq_queue (unsigned char *note); |
note | 262 | drivers/sound/sequencer.c | seq_queue (unsigned char *note) |
note | 280 | drivers/sound/sequencer.c | memcpy (&queue[qtail][0], note, EV_SZ); |
note | 1021 | drivers/sound/sequencer.c | int note, octave, note_freq; |
note | 1031 | drivers/sound/sequencer.c | note = note_num % 12; |
note | 1033 | drivers/sound/sequencer.c | note_freq = notes[note]; |
note | 645 | drivers/sound/soundcard.h | #define SEQ_START_NOTE(dev, voice, note, vol) {_SEQ_NEEDBUF(8);\ |
note | 650 | drivers/sound/soundcard.h | _seqbuf[_seqbufptr+4] = (note);\ |
note | 656 | drivers/sound/soundcard.h | #define SEQ_STOP_NOTE(dev, voice, note, vol) {_SEQ_NEEDBUF(8);\ |
note | 661 | drivers/sound/soundcard.h | _seqbuf[_seqbufptr+4] = (note);\ |