Searched defs:runtime (Results 1 - 8 of 8) sorted by relevance

/include/sound/
H A Dpcm-indirect.h51 struct snd_pcm_runtime *runtime = substream->runtime; local
52 snd_pcm_uframes_t appl_ptr = runtime->control->appl_ptr;
57 if (diff < -(snd_pcm_sframes_t) (runtime->boundary / 2))
58 diff += runtime->boundary;
59 rec->sw_ready += (int)frames_to_bytes(runtime, diff);
105 return bytes_to_frames(substream->runtime, rec->sw_io);
117 struct snd_pcm_runtime *runtime = substream->runtime; local
118 snd_pcm_uframes_t appl_ptr = runtime
[all...]
H A Dcompress_driver.h37 * struct snd_compr_runtime: runtime stream description
69 * @runtime: pointer to runtime structure
79 struct snd_compr_runtime *runtime; member in struct:snd_compr_stream
171 wake_up(&stream->runtime->sleep);
179 stream->runtime->state = SNDRV_PCM_STATE_SETUP;
180 wake_up(&stream->runtime->sleep);
H A Dsoc-dpcm.h69 * This links together a FE and BE DAI at runtime and stores the link
92 * Dynamic PCM runtime data.
99 struct snd_pcm_runtime *runtime; member in struct:snd_soc_dpcm_runtime
128 /* get the BE runtime state */
132 /* set the BE runtime state */
H A Drawmidi.h102 struct snd_rawmidi_runtime *runtime; member in struct:snd_rawmidi_substream
H A Dvx_core.h108 void (*dma_write)(struct vx_core *chip, struct snd_pcm_runtime *runtime,
110 void (*dma_read)(struct vx_core *chip, struct snd_pcm_runtime *runtime,
288 static inline void vx_pseudo_dma_write(struct vx_core *chip, struct snd_pcm_runtime *runtime, argument
291 chip->ops->dma_write(chip, runtime, pipe, count);
294 static inline void vx_pseudo_dma_read(struct vx_core *chip, struct snd_pcm_runtime *runtime, argument
297 chip->ops->dma_read(chip, runtime, pipe, count);
H A Dpcm.h338 void (*private_free)(struct snd_pcm_runtime *runtime);
391 /* -- runtime information -- */
392 struct snd_pcm_runtime *runtime; member in struct:snd_pcm_substream
561 return (substream->runtime->status->state == SNDRV_PCM_STATE_RUNNING ||
562 (substream->runtime->status->state == SNDRV_PCM_STATE_DRAINING &&
566 static inline ssize_t bytes_to_samples(struct snd_pcm_runtime *runtime, ssize_t size) argument
568 return size * 8 / runtime->sample_bits;
571 static inline snd_pcm_sframes_t bytes_to_frames(struct snd_pcm_runtime *runtime, ssize_t size) argument
573 return size * 8 / runtime->frame_bits;
576 static inline ssize_t samples_to_bytes(struct snd_pcm_runtime *runtime, ssize_ argument
581 frames_to_bytes(struct snd_pcm_runtime *runtime, snd_pcm_sframes_t size) argument
586 frame_aligned(struct snd_pcm_runtime *runtime, ssize_t bytes) argument
593 struct snd_pcm_runtime *runtime = substream->runtime; local
599 struct snd_pcm_runtime *runtime = substream->runtime; local
606 snd_pcm_playback_avail(struct snd_pcm_runtime *runtime) argument
619 snd_pcm_capture_avail(struct snd_pcm_runtime *runtime) argument
627 snd_pcm_playback_hw_avail(struct snd_pcm_runtime *runtime) argument
632 snd_pcm_capture_hw_avail(struct snd_pcm_runtime *runtime) argument
647 struct snd_pcm_runtime *runtime = substream->runtime; local
661 struct snd_pcm_runtime *runtime = substream->runtime; local
676 struct snd_pcm_runtime *runtime = substream->runtime; local
693 struct snd_pcm_runtime *runtime = substream->runtime; local
707 struct snd_pcm_runtime *runtime = substream->runtime; local
889 struct snd_pcm_runtime *runtime = substream->runtime; local
911 snd_pcm_gettime(struct snd_pcm_runtime *runtime, struct timespec *tv) argument
[all...]
/include/linux/
H A Defi.h99 #define EFI_MEMORY_RUNTIME ((u64)0x8000000000000000ULL) /* range requires runtime mapping */
633 u64 runtime; member in struct:__anon225
650 u32 runtime; member in struct:__anon226
666 efi_runtime_services_t *runtime; member in struct:__anon227
808 * All runtime access to EFI goes through this structure:
824 unsigned long runtime; /* runtime table */ member in struct:efi
940 #define EFI_RUNTIME_SERVICES 3 /* Can we use runtime services? */
H A Dsched.h81 * discipline) computation time of all instances, a.k.a. runtime;
87 * than the runtime and must be completed by time instant t equal to
99 * @sched_runtime representative of the task's runtime
501 * This is an extension of struct cputime that includes the total runtime
1178 u64 dl_runtime; /* maximum runtime for each instance */
1186 * the remaining runtime could be < 0 in case we are in overrun.
1188 s64 runtime; /* remaining runtime for this instance */ member in struct:sched_dl_entity
1195 * @dl_throttled tells if we exhausted the runtime. If so, the
1200 * start executing it with full runtime an
[all...]

Completed in 135 milliseconds