Lines Matching refs:frames1

1346 	snd_pcm_sframes_t frames, frames1;  in snd_pcm_oss_write2()  local
1357 frames1 = snd_pcm_plug_client_channels_buf(substream, (char *)buf, frames, &channels); in snd_pcm_oss_write2()
1358 if (frames1 < 0) in snd_pcm_oss_write2()
1359 return frames1; in snd_pcm_oss_write2()
1360 frames1 = snd_pcm_plug_write_transfer(substream, channels, frames1); in snd_pcm_oss_write2()
1361 if (frames1 <= 0) in snd_pcm_oss_write2()
1362 return frames1; in snd_pcm_oss_write2()
1363 bytes = frames1 * oss_frame_bytes; in snd_pcm_oss_write2()
1368 frames1 = snd_pcm_oss_write3(substream, buf, frames, in_kernel); in snd_pcm_oss_write2()
1369 if (frames1 <= 0) in snd_pcm_oss_write2()
1370 return frames1; in snd_pcm_oss_write2()
1371 bytes = frames_to_bytes(runtime, frames1); in snd_pcm_oss_write2()
1456 snd_pcm_sframes_t frames, frames1; in snd_pcm_oss_read2() local
1465 frames1 = snd_pcm_plug_client_channels_buf(substream, buf, frames, &channels); in snd_pcm_oss_read2()
1466 if (frames1 < 0) in snd_pcm_oss_read2()
1467 return frames1; in snd_pcm_oss_read2()
1468 frames1 = snd_pcm_plug_read_transfer(substream, channels, frames1); in snd_pcm_oss_read2()
1469 if (frames1 <= 0) in snd_pcm_oss_read2()
1470 return frames1; in snd_pcm_oss_read2()
1471 bytes = frames1 * oss_frame_bytes; in snd_pcm_oss_read2()
1478 frames1 = snd_pcm_oss_read3(substream, buf, frames, in_kernel); in snd_pcm_oss_read2()
1479 if (frames1 <= 0) in snd_pcm_oss_read2()
1480 return frames1; in snd_pcm_oss_read2()
1481 bytes = frames_to_bytes(runtime, frames1); in snd_pcm_oss_read2()