Searched refs:n_pending (Results 1 - 2 of 2) sorted by relevance

/sound/pci/rme9652/
H A Dhdspm.c1584 int n_pending; local
1594 n_pending = snd_hdspm_midi_output_possible (hmidi->hdspm,
1596 if (n_pending > 0) {
1597 if (n_pending > (int)sizeof (buf))
1598 n_pending = sizeof (buf);
1601 n_pending);
1620 int n_pending; local
1624 n_pending = snd_hdspm_midi_input_available (hmidi->hdspm, hmidi->id);
1625 if (n_pending > 0) {
1627 if (n_pending > (in
[all...]
H A Dhdsp.c1290 int n_pending; local
1300 if ((n_pending = snd_hdsp_midi_output_possible (hmidi->hdsp, hmidi->id)) > 0) {
1301 if (n_pending > (int)sizeof (buf))
1302 n_pending = sizeof (buf);
1304 if ((to_write = snd_rawmidi_transmit (hmidi->output, buf, n_pending)) > 0) {
1319 int n_pending; local
1323 if ((n_pending = snd_hdsp_midi_input_available (hmidi->hdsp, hmidi->id)) > 0) {
1325 if (n_pending > (int)sizeof (buf))
1326 n_pending = sizeof (buf);
1327 for (i = 0; i < n_pending;
[all...]

Completed in 62 milliseconds