Lines Matching refs:bytes1
5014 int bytes1; in audio_track_play() local
5017 bytes1 = auring_get_contig_used(usrbuf); in audio_track_play()
5018 KASSERTMSG(bytes1 % framesize == 0, in audio_track_play()
5019 "bytes1=%d framesize=%d", bytes1, framesize); in audio_track_play()
5022 bytes1); in audio_track_play()
5023 auring_push(input, bytes1 / framesize); in audio_track_play()
5024 auring_take(usrbuf, bytes1); in audio_track_play()
5026 bytes2 = bytes - bytes1; in audio_track_play()
5172 int bytes1; in audio_track_record() local
5175 bytes1 = auring_get_contig_free(usrbuf); in audio_track_record()
5176 KASSERTMSG(bytes1 % framesize == 0, in audio_track_record()
5177 "bytes1=%d framesize=%d", bytes1, framesize); in audio_track_record()
5180 bytes1); in audio_track_record()
5181 auring_push(usrbuf, bytes1); in audio_track_record()
5182 auring_take(outbuf, bytes1 / framesize); in audio_track_record()
5184 bytes2 = bytes - bytes1; in audio_track_record()