Lines Matching refs:frames1

1352 	snd_pcm_sframes_t frames, frames1;  in snd_pcm_oss_write2()  local
1363 frames1 = snd_pcm_plug_client_channels_buf(substream, (char *)buf, frames, &channels); in snd_pcm_oss_write2()
1364 if (frames1 < 0) in snd_pcm_oss_write2()
1365 return frames1; in snd_pcm_oss_write2()
1366 frames1 = snd_pcm_plug_write_transfer(substream, channels, frames1); in snd_pcm_oss_write2()
1367 if (frames1 <= 0) in snd_pcm_oss_write2()
1368 return frames1; in snd_pcm_oss_write2()
1369 bytes = frames1 * oss_frame_bytes; in snd_pcm_oss_write2()
1374 frames1 = snd_pcm_oss_write3(substream, buf, frames, in_kernel); in snd_pcm_oss_write2()
1375 if (frames1 <= 0) in snd_pcm_oss_write2()
1376 return frames1; in snd_pcm_oss_write2()
1377 bytes = frames_to_bytes(runtime, frames1); in snd_pcm_oss_write2()
1462 snd_pcm_sframes_t frames, frames1; in snd_pcm_oss_read2() local
1471 frames1 = snd_pcm_plug_client_channels_buf(substream, buf, frames, &channels); in snd_pcm_oss_read2()
1472 if (frames1 < 0) in snd_pcm_oss_read2()
1473 return frames1; in snd_pcm_oss_read2()
1474 frames1 = snd_pcm_plug_read_transfer(substream, channels, frames1); in snd_pcm_oss_read2()
1475 if (frames1 <= 0) in snd_pcm_oss_read2()
1476 return frames1; in snd_pcm_oss_read2()
1477 bytes = frames1 * oss_frame_bytes; in snd_pcm_oss_read2()
1484 frames1 = snd_pcm_oss_read3(substream, buf, frames, in_kernel); in snd_pcm_oss_read2()
1485 if (frames1 <= 0) in snd_pcm_oss_read2()
1486 return frames1; in snd_pcm_oss_read2()
1487 bytes = frames_to_bytes(runtime, frames1); in snd_pcm_oss_read2()