Searched defs:cont (Results 1 - 3 of 3) sorted by relevance

/sound/pcmcia/pdaudiocf/
H A Dpdaudiocf_irq.c262 int size, off, cont, rdp, wdp; local
305 cont = chip->pcm_size - off;
306 if (cont > size)
307 cont = size;
308 pdacf_transfer(chip, cont, off);
309 off += cont;
311 size -= cont;
/sound/pci/ice1712/
H A Dse.c606 struct snd_kcontrol_new cont; local
609 memset(&cont, 0, sizeof(cont));
610 cont.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
612 cont.private_value = i;
613 cont.name = se200pci_cont[i].name;
614 cont.access = SNDRV_CTL_ELEM_ACCESS_READWRITE;
615 cont.tlv.p = NULL;
619 cont.info = se200pci_cont_volume_info;
620 cont
[all...]
/sound/core/
H A Dpcm_lib.c1892 snd_pcm_uframes_t cont; local
1908 cont = runtime->buffer_size - runtime->control->appl_ptr % runtime->buffer_size;
1909 if (frames > cont)
1910 frames = cont;
2116 snd_pcm_uframes_t cont; local
2139 cont = runtime->buffer_size - runtime->control->appl_ptr % runtime->buffer_size;
2140 if (frames > cont)
2141 frames = cont;

Completed in 2475 milliseconds