Lines Matching full:runtime
36 struct snd_pcm_runtime *runtime = pcm->runtime; in write_pcm_s32() local
43 pcm_buffer_pointer %= runtime->buffer_size; in write_pcm_s32()
45 src = (void *)runtime->dma_area + in write_pcm_s32()
46 frames_to_bytes(runtime, pcm_buffer_pointer); in write_pcm_s32()
47 remaining_frames = runtime->buffer_size - pcm_buffer_pointer; in write_pcm_s32()
56 src = (void *)runtime->dma_area; in write_pcm_s32()
66 struct snd_pcm_runtime *runtime = pcm->runtime; in read_pcm_s32() local
73 pcm_buffer_pointer %= runtime->buffer_size; in read_pcm_s32()
75 dst = (void *)runtime->dma_area + in read_pcm_s32()
76 frames_to_bytes(runtime, pcm_buffer_pointer); in read_pcm_s32()
77 remaining_frames = runtime->buffer_size - pcm_buffer_pointer; in read_pcm_s32()
86 dst = (void *)runtime->dma_area; in read_pcm_s32()
104 struct snd_pcm_runtime *runtime) in amdtp_ff_add_pcm_hw_constraints() argument
108 err = snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24); in amdtp_ff_add_pcm_hw_constraints()
112 return amdtp_stream_add_pcm_hw_constraints(s, runtime); in amdtp_ff_add_pcm_hw_constraints()