Lines Matching refs:note
51 unsigned char note; member
218 unsigned char status, unsigned char note, unsigned char velocity) in pcmidi_send_note() argument
224 buffer[1] = note; in pcmidi_send_note()
246 pcmidi_send_note(pms->pm, pms->status, pms->note, pms->velocity); in pcmidi_sustained_note_release()
345 unsigned char status, note, velocity; in pcmidi_handle_report3() local
349 note = data[j*2+1]; in pcmidi_handle_report3()
352 if (note < 0x81) { /* note on */ in pcmidi_handle_report3()
354 note = note - 0x54 + PCMIDI_MIDDLE_C + in pcmidi_handle_report3()
360 note = note - 0x94 + PCMIDI_MIDDLE_C + in pcmidi_handle_report3()
368 pms->note = note; in pcmidi_handle_report3()
380 pcmidi_send_note(pm, status, note, velocity); in pcmidi_handle_report3()