Lines Matching refs:nwords
3730 static void wm_adsp_remove_padding(u32 *buf, int nwords, int data_word_size) in wm_adsp_remove_padding() argument
3737 for (i = 0; i < nwords; i++) { in wm_adsp_remove_padding()
4241 int mem_type, nwords, max_read; in wm_adsp_buffer_capture_block() local
4257 nwords = buf->regions[i].cumulative_size - buf->read_index; in wm_adsp_buffer_capture_block()
4259 if (nwords > target) in wm_adsp_buffer_capture_block()
4260 nwords = target; in wm_adsp_buffer_capture_block()
4261 if (nwords > buf->avail) in wm_adsp_buffer_capture_block()
4262 nwords = buf->avail; in wm_adsp_buffer_capture_block()
4263 if (nwords > max_read) in wm_adsp_buffer_capture_block()
4264 nwords = max_read; in wm_adsp_buffer_capture_block()
4265 if (!nwords) in wm_adsp_buffer_capture_block()
4270 nwords, compr->raw_buf); in wm_adsp_buffer_capture_block()
4274 wm_adsp_remove_padding(compr->raw_buf, nwords, WM_ADSP_DATA_WORD_SIZE); in wm_adsp_buffer_capture_block()
4277 buf->read_index += nwords; in wm_adsp_buffer_capture_block()
4287 buf->avail -= nwords; in wm_adsp_buffer_capture_block()
4289 return nwords; in wm_adsp_buffer_capture_block()
4297 int nwords, nbytes; in wm_adsp_compr_read() local
4309 nwords = wm_adsp_buffer_capture_block(compr, count); in wm_adsp_compr_read()
4310 if (nwords < 0) { in wm_adsp_compr_read()
4312 nwords); in wm_adsp_compr_read()
4313 return nwords; in wm_adsp_compr_read()
4316 nbytes = nwords * WM_ADSP_DATA_WORD_SIZE; in wm_adsp_compr_read()
4326 count -= nwords; in wm_adsp_compr_read()
4328 } while (nwords > 0 && count > 0); in wm_adsp_compr_read()