Searched refs:sysex (Results 1 – 6 of 6) sorted by relevance
| /linux/sound/usb/line6/ |
| H A D | pod.c | 214 char *sysex; in pod_set_system_param_int() local 217 sysex = pod_alloc_sysex_buffer(pod, POD_SYSEX_SYSTEM, size); in pod_set_system_param_int() 218 if (!sysex) in pod_set_system_param_int() 220 sysex[SYSEX_DATA_OFS] = code; in pod_set_system_param_int() 221 sysex[SYSEX_DATA_OFS + 1] = (value >> 12) & 0x0f; in pod_set_system_param_int() 222 sysex[SYSEX_DATA_OFS + 2] = (value >> 8) & 0x0f; in pod_set_system_param_int() 223 sysex[SYSEX_DATA_OFS + 3] = (value >> 4) & 0x0f; in pod_set_system_param_int() 224 sysex[SYSEX_DATA_OFS + 4] = (value) & 0x0f; in pod_set_system_param_int() 225 line6_send_sysex_message(&pod->line6, sysex, size); in pod_set_system_param_int() 226 kfree(sysex); in pod_set_system_param_int()
|
| /linux/sound/core/seq/ |
| H A D | seq_midi_emul.c | 46 static void sysex(const struct snd_midi_op *ops, void *private, 47 unsigned char *sysex, 199 sysex(ops, drv, sysexbuf, len, chanset); in snd_midi_process_event() 478 sysex(const struct snd_midi_op *ops, void *private, unsigned char *buf, int len, in sysex() function 584 if (ops->sysex) in sysex() 585 ops->sysex(private, buf - 1, len + 1, parsed, chset); in sysex()
|
| /linux/sound/isa/sb/ |
| H A D | emu8000_callback.c | 24 static void sysex(struct snd_emux *emu, char *buf, int len, int parsed, 65 .sysex = sysex, 447 sysex(struct snd_emux *emu, char *buf, int len, int parsed, struct snd_midi_channel_set *chset) in sysex() function
|
| /linux/sound/synth/emux/ |
| H A D | emux_nrpn.c | 381 if (emu->ops.sysex) in snd_emux_sysex() 382 emu->ops.sysex(emu, buf, len, parsed, chset); in snd_emux_sysex()
|
| /linux/include/sound/ |
| H A D | emux_synth.h | 52 void (*sysex)(struct snd_emux *emu, char *buf, int len, int parsed, member
|
| H A D | seq_midi_emul.h | 76 void (*sysex)(void *private_data, unsigned char *buf, int len, int parsed, member
|