Lines Matching full:now
59 snd_pcm_uframes_t now;
194 snd_pcm_sframes_t now;
217 now = status.appl_ptr - status.delay;
218 if (now < 0)
219 now += pcm->boundary;
221 now = status.appl_ptr + status.delay;
222 if ((snd_pcm_uframes_t) now >= pcm->boundary)
223 now -= pcm->boundary;
225 meter->now = now;
911 * \brief Get meter "now" frame pointer from a #SND_PCM_TYPE_METER PCM
913 * \return "now" frame pointer in frames (0 ... boundary - 1) see #snd_pcm_meter_get_boundary
921 return meter->now;
1094 size = meter->now - s16->old;
1136 s16->old = meter->now;
1143 s16->old = meter->now;