Lines Matching refs:frames1

1359 	snd_pcm_sframes_t frames, frames1;  in snd_pcm_oss_write2()  local
1370 frames1 = snd_pcm_plug_client_channels_buf(substream, (char *)buf, frames, &channels); in snd_pcm_oss_write2()
1371 if (frames1 < 0) in snd_pcm_oss_write2()
1372 return frames1; in snd_pcm_oss_write2()
1373 frames1 = snd_pcm_plug_write_transfer(substream, channels, frames1); in snd_pcm_oss_write2()
1374 if (frames1 <= 0) in snd_pcm_oss_write2()
1375 return frames1; in snd_pcm_oss_write2()
1376 bytes = frames1 * oss_frame_bytes; in snd_pcm_oss_write2()
1381 frames1 = snd_pcm_oss_write3(substream, buf, frames, in_kernel); in snd_pcm_oss_write2()
1382 if (frames1 <= 0) in snd_pcm_oss_write2()
1383 return frames1; in snd_pcm_oss_write2()
1384 bytes = frames_to_bytes(runtime, frames1); in snd_pcm_oss_write2()
1469 snd_pcm_sframes_t frames, frames1; in snd_pcm_oss_read2() local
1478 frames1 = snd_pcm_plug_client_channels_buf(substream, buf, frames, &channels); in snd_pcm_oss_read2()
1479 if (frames1 < 0) in snd_pcm_oss_read2()
1480 return frames1; in snd_pcm_oss_read2()
1481 frames1 = snd_pcm_plug_read_transfer(substream, channels, frames1); in snd_pcm_oss_read2()
1482 if (frames1 <= 0) in snd_pcm_oss_read2()
1483 return frames1; in snd_pcm_oss_read2()
1484 bytes = frames1 * oss_frame_bytes; in snd_pcm_oss_read2()
1491 frames1 = snd_pcm_oss_read3(substream, buf, frames, in_kernel); in snd_pcm_oss_read2()
1492 if (frames1 <= 0) in snd_pcm_oss_read2()
1493 return frames1; in snd_pcm_oss_read2()
1494 bytes = frames_to_bytes(runtime, frames1); in snd_pcm_oss_read2()