Lines Matching defs:count
346 * @count: data length to transfer in bytes
352 struct vx_pipe *pipe, int count)
359 if (offset + count >= pipe->buffer_bytes) {
361 count -= length;
371 pipe->hw_ptr += count;
372 count >>= 1; /* in 16bit words */
374 for (; count > 0; count--) {
385 * @count: data length to transfer in bytes
391 struct vx_pipe *pipe, int count)
398 if (snd_BUG_ON(count % 2))
401 if (offset + count >= pipe->buffer_bytes) {
403 count -= length;
411 pipe->hw_ptr += count;
412 count >>= 1; /* in 16bit words */
414 for (; count > 1; count--)