• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/alsa-lib-1.0.26/src/pcm/

Lines Matching refs:snd_pcm_uframes_t

65 void snd_pcm_mmap_appl_backward(snd_pcm_t *pcm, snd_pcm_uframes_t frames)
74 void snd_pcm_mmap_appl_forward(snd_pcm_t *pcm, snd_pcm_uframes_t frames)
76 snd_pcm_uframes_t appl_ptr = *pcm->appl.ptr;
83 void snd_pcm_mmap_hw_backward(snd_pcm_t *pcm, snd_pcm_uframes_t frames)
92 void snd_pcm_mmap_hw_forward(snd_pcm_t *pcm, snd_pcm_uframes_t frames)
94 snd_pcm_uframes_t hw_ptr = *pcm->hw.ptr;
103 snd_pcm_uframes_t offset,
104 snd_pcm_uframes_t size)
106 snd_pcm_uframes_t xfer = 0;
114 snd_pcm_uframes_t pcm_offset;
115 snd_pcm_uframes_t frames = size;
135 snd_pcm_uframes_t offset,
136 snd_pcm_uframes_t size)
138 snd_pcm_uframes_t xfer = 0;
146 snd_pcm_uframes_t pcm_offset;
147 snd_pcm_uframes_t frames = size;
182 snd_pcm_sframes_t snd_pcm_mmap_writei(snd_pcm_t *pcm, const void *buffer, snd_pcm_uframes_t size)
207 snd_pcm_sframes_t snd_pcm_mmap_writen(snd_pcm_t *pcm, void **bufs, snd_pcm_uframes_t size)
232 snd_pcm_sframes_t snd_pcm_mmap_readi(snd_pcm_t *pcm, void *buffer, snd_pcm_uframes_t size)
257 snd_pcm_sframes_t snd_pcm_mmap_readn(snd_pcm_t *pcm, void **bufs, snd_pcm_uframes_t size)
539 snd_pcm_sframes_t snd_pcm_write_mmap(snd_pcm_t *pcm, snd_pcm_uframes_t offset,
540 snd_pcm_uframes_t size)
542 snd_pcm_uframes_t xfer = 0;
547 snd_pcm_uframes_t frames = size - xfer;
548 snd_pcm_uframes_t cont = pcm->buffer_size - offset;
590 snd_pcm_sframes_t snd_pcm_read_mmap(snd_pcm_t *pcm, snd_pcm_uframes_t offset,
591 snd_pcm_uframes_t size)
593 snd_pcm_uframes_t xfer = 0;
598 snd_pcm_uframes_t frames = size - xfer;
599 snd_pcm_uframes_t cont = pcm->buffer_size - offset;
614 snd_pcm_uframes_t channels = pcm->channels;