note              549 dev/ic/opl.c   oplsyn_noteoff(ms, voice, note, vel)
note              551 dev/ic/opl.c   	u_int32_t voice, note, vel;
note              557 dev/ic/opl.c   		     MIDISYN_FREQ_TO_HZ(note)));
note              570 dev/ic/opl.c   oplsyn_keypressure(ms, voice, note, vel)
note              572 dev/ic/opl.c   	u_int32_t voice, note, vel;
note              576 dev/ic/opl.c   	DPRINTFN(1, ("oplsyn_keypressure: %p %d\n", sc, note));
note              127 dev/isa/midi_pcppi.c midi_pcppi_on(ms, chan, note, vel)
note              129 dev/isa/midi_pcppi.c 	u_int32_t chan, note, vel;
note              134 dev/isa/midi_pcppi.c 	pcppi_bell(t, MIDISYN_FREQ_TO_HZ(note), MAX_DURATION * hz, 0);
note              138 dev/isa/midi_pcppi.c midi_pcppi_off(ms, chan, note, vel)
note              140 dev/isa/midi_pcppi.c 	u_int32_t chan, note, vel;
note              160 dev/midisyn.c  midisyn_findvoice(ms, chan, note)
note              162 dev/midisyn.c  	int chan, note;
note              169 dev/midisyn.c  	cn = MS_CHANNOTE(chan, note);
note              205 dev/midisyn.c  midisyn_allocvoice(ms, chan, note)
note              207 dev/midisyn.c  	u_int32_t chan, note;
note              235 dev/midisyn.c  	ms->voices[bestv].chan_note = MS_CHANNOTE(chan, note);
note              250 dev/midisyn.c  	u_int32_t note, vel;
note              271 dev/midisyn.c  	note = ms->buf[1];
note              273 dev/midisyn.c  		note = midisyn_note_to_freq(note);
note              279 dev/midisyn.c  			fs->noteoff(ms, voice, note, vel);
note              285 dev/midisyn.c  		fs->noteon(ms, voice, note, vel);
note              291 dev/midisyn.c  				fs->keypres(ms, voice, note, vel);
note              306 dev/midisyn.c  				fs->chnpres(ms, voice, note);
note              313 dev/midisyn.c  				fs->pitchb(ms, chan, note, vel);
note              331 dev/midisyn.c  midisyn_note_to_freq(note)
note              332 dev/midisyn.c  	int note;
note              342 dev/midisyn.c  	o = note / 12;
note              343 dev/midisyn.c  	n = note % 12;
note               62 dev/midisynvar.h #define MS_CHANNOTE(chan, note) ((chan) * 256 + (note))
note              679 dev/sequencer.c 	int cmd, dev, chan, note, parm, voice;
note              689 dev/sequencer.c 	note = SEQ_ENOTE(b);
note              692 dev/sequencer.c 		    cmd, dev, chan, note, parm));
note              701 dev/sequencer.c 			     md, voice, note, parm));
note              702 dev/sequencer.c 		error = midiseq_noteon(md, voice, note, parm);
note              705 dev/sequencer.c 		error = midiseq_noteoff(md, voice, note, parm);
note              708 dev/sequencer.c 		error = midiseq_keypressure(md, voice, note, parm);
note              917 dev/sequencer.c 	int cmd, chan, note, parm;
note              923 dev/sequencer.c 	note = ev->arr[2];
note              925 dev/sequencer.c 	DPRINTFN(3, ("seq_to_new: 0x%02x %d %d %d\n", cmd, chan, note, parm));
note              940 dev/sequencer.c 		note = 255;
note              949 dev/sequencer.c 		SEQ_ENOTE(ev) = note;
note              967 dev/sequencer.c 		SEQ_EP1(ev) = note;
note             1089 dev/sequencer.c midiseq_noteon(struct midi_dev *md, int chan, int note, int vel)
note             1094 dev/sequencer.c 		     MIDI_NOTEON | chan, note, vel));
note             1096 dev/sequencer.c 	    note < 0 || note > 127)
note             1101 dev/sequencer.c 	buf[1] = note;
note             1107 dev/sequencer.c midiseq_noteoff(struct midi_dev *md, int chan, int note, int vel)
note             1112 dev/sequencer.c 	    note < 0 || note > 127)
note             1117 dev/sequencer.c 	buf[1] = note;
note             1123 dev/sequencer.c midiseq_keypressure(struct midi_dev *md, int chan, int note, int vel)
note             1128 dev/sequencer.c 	    note < 0 || note > 127)
note             1133 dev/sequencer.c 	buf[1] = note;
note               53 miscfs/procfs/procfs_note.c 	char note[PROCFS_NOTELEN+1];
note               59 miscfs/procfs/procfs_note.c 	error = vfs_getuserstr(uio, note, &xlen);