Lines Matching refs:frame_bytes
703 unsigned int frame_bytes, frames1; in rtk_copy_capture_data_to_alsa() local
708 frame_bytes = 2; in rtk_copy_capture_data_to_alsa()
710 dest = runtime->dma_area + pSCOSnd->capture.buffer_pos * frame_bytes; in rtk_copy_capture_data_to_alsa()
712 memcpy(dest, p_data, frames * frame_bytes); in rtk_copy_capture_data_to_alsa()
716 memcpy(dest, p_data, frames1 * frame_bytes); in rtk_copy_capture_data_to_alsa()
718 p_data + frames1 * frame_bytes, in rtk_copy_capture_data_to_alsa()
719 (frames - frames1) * frame_bytes); in rtk_copy_capture_data_to_alsa()
3233 unsigned int frame_bytes = 2, frames1; in snd_copy_send_sco_data() local
3252 source = runtime->dma_area + pSCOSnd->playback.buffer_pos * frame_bytes; in snd_copy_send_sco_data()
3255 memcpy(buffer, source, period_size * frame_bytes); in snd_copy_send_sco_data()
3259 memcpy(buffer, source, frames1 * frame_bytes); in snd_copy_send_sco_data()
3260 memcpy(&buffer[frames1 * frame_bytes], in snd_copy_send_sco_data()
3261 runtime->dma_area, (period_size - frames1) * frame_bytes); in snd_copy_send_sco_data()