Lines Matching refs:channel_buf

1892 	char *channel_buf;  in snd_rme9652_playback_copy()  local
1897 channel_buf = rme9652_channel_buffer_location (rme9652, in snd_rme9652_playback_copy()
1900 if (snd_BUG_ON(!channel_buf)) in snd_rme9652_playback_copy()
1902 if (copy_from_user(channel_buf + pos, src, count)) in snd_rme9652_playback_copy()
1912 char *channel_buf; in snd_rme9652_playback_copy_kernel() local
1914 channel_buf = rme9652_channel_buffer_location(rme9652, in snd_rme9652_playback_copy_kernel()
1917 if (snd_BUG_ON(!channel_buf)) in snd_rme9652_playback_copy_kernel()
1919 memcpy(channel_buf + pos, src, count); in snd_rme9652_playback_copy_kernel()
1928 char *channel_buf; in snd_rme9652_capture_copy() local
1933 channel_buf = rme9652_channel_buffer_location (rme9652, in snd_rme9652_capture_copy()
1936 if (snd_BUG_ON(!channel_buf)) in snd_rme9652_capture_copy()
1938 if (copy_to_user(dst, channel_buf + pos, count)) in snd_rme9652_capture_copy()
1948 char *channel_buf; in snd_rme9652_capture_copy_kernel() local
1950 channel_buf = rme9652_channel_buffer_location(rme9652, in snd_rme9652_capture_copy_kernel()
1953 if (snd_BUG_ON(!channel_buf)) in snd_rme9652_capture_copy_kernel()
1955 memcpy(dst, channel_buf + pos, count); in snd_rme9652_capture_copy_kernel()
1964 char *channel_buf; in snd_rme9652_hw_silence() local
1966 channel_buf = rme9652_channel_buffer_location (rme9652, in snd_rme9652_hw_silence()
1969 if (snd_BUG_ON(!channel_buf)) in snd_rme9652_hw_silence()
1971 memset(channel_buf + pos, 0, count); in snd_rme9652_hw_silence()