Lines Matching refs:note
40 unsigned char note; member
204 unsigned char status, unsigned char note, unsigned char velocity) in pcmidi_send_note() argument
210 buffer[1] = note; in pcmidi_send_note()
232 pcmidi_send_note(pms->pm, pms->status, pms->note, pms->velocity); in pcmidi_sustained_note_release()
330 unsigned char status, note, velocity; in pcmidi_handle_report3() local
334 note = data[j*2+1]; in pcmidi_handle_report3()
337 if (note < 0x81) { /* note on */ in pcmidi_handle_report3()
339 note = note - 0x54 + PCMIDI_MIDDLE_C + in pcmidi_handle_report3()
345 note = note - 0x94 + PCMIDI_MIDDLE_C + in pcmidi_handle_report3()
353 pms->note = note; in pcmidi_handle_report3()
365 pcmidi_send_note(pm, status, note, velocity); in pcmidi_handle_report3()