Lines Matching refs:nwords
3663 int mem_type, nwords, max_read; in wm_adsp_buffer_capture_block() local
3679 nwords = buf->regions[i].cumulative_size - buf->read_index; in wm_adsp_buffer_capture_block()
3681 if (nwords > target) in wm_adsp_buffer_capture_block()
3682 nwords = target; in wm_adsp_buffer_capture_block()
3683 if (nwords > buf->avail) in wm_adsp_buffer_capture_block()
3684 nwords = buf->avail; in wm_adsp_buffer_capture_block()
3685 if (nwords > max_read) in wm_adsp_buffer_capture_block()
3686 nwords = max_read; in wm_adsp_buffer_capture_block()
3687 if (!nwords) in wm_adsp_buffer_capture_block()
3692 nwords, compr->raw_buf); in wm_adsp_buffer_capture_block()
3697 for (i = 0; i < nwords; i++) { in wm_adsp_buffer_capture_block()
3705 buf->read_index += nwords; in wm_adsp_buffer_capture_block()
3715 buf->avail -= nwords; in wm_adsp_buffer_capture_block()
3717 return nwords; in wm_adsp_buffer_capture_block()
3725 int nwords, nbytes; in wm_adsp_compr_read() local
3737 nwords = wm_adsp_buffer_capture_block(compr, count); in wm_adsp_compr_read()
3738 if (nwords < 0) { in wm_adsp_compr_read()
3739 adsp_err(dsp, "Failed to capture block: %d\n", nwords); in wm_adsp_compr_read()
3740 return nwords; in wm_adsp_compr_read()
3743 nbytes = nwords * WM_ADSP_DATA_WORD_SIZE; in wm_adsp_compr_read()
3753 count -= nwords; in wm_adsp_compr_read()
3755 } while (nwords > 0 && count > 0); in wm_adsp_compr_read()