Lines Matching refs:note
54 unsigned char note; member
221 unsigned char status, unsigned char note, unsigned char velocity) in pcmidi_send_note() argument
227 buffer[1] = note; in pcmidi_send_note()
249 pcmidi_send_note(pms->pm, pms->status, pms->note, pms->velocity); in pcmidi_sustained_note_release()
348 unsigned char status, note, velocity; in pcmidi_handle_report3() local
352 note = data[j*2+1]; in pcmidi_handle_report3()
355 if (note < 0x81) { /* note on */ in pcmidi_handle_report3()
357 note = note - 0x54 + PCMIDI_MIDDLE_C + in pcmidi_handle_report3()
363 note = note - 0x94 + PCMIDI_MIDDLE_C + in pcmidi_handle_report3()
371 pms->note = note; in pcmidi_handle_report3()
383 pcmidi_send_note(pm, status, note, velocity); in pcmidi_handle_report3()