Lines Matching refs:bytes
179 …t audio_stream_out *stream, const void *buffer, size_t frame_size, size_t out_frames, size_t bytes) in xa_device_run() argument
186 memcpy(adev->dsp_device.dec_inbuf[0],buffer,bytes); in xa_device_run()
187 adev->dsp_device.read_length=bytes; in xa_device_run()
412 size_t bytes) in out_write() argument
418 size_t out_frames = bytes / frame_size; in out_write()
445 ret = xa_device_run(stream, buffer,frame_size, out_frames, bytes); in out_write()
459 usleep((int64_t)bytes * 1000000 / audio_stream_out_frame_size(stream) / in out_write()
463 return bytes; in out_write()
578 size_t bytes) in in_read() argument
580 ALOGV("in_read: bytes %zu", bytes); in in_read()
582 usleep((int64_t)bytes * 1000000 / audio_stream_in_frame_size(stream) / in in_read()
584 memset(buffer, 0, bytes); in in_read()
585 return bytes; in in_read()